Skip to content

Commit f7fecb2

Browse files
committed
Change action format
1 parent 5864490 commit f7fecb2

File tree

1 file changed

+5
-17
lines changed

1 file changed

+5
-17
lines changed

action.yaml

+5-17
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,8 @@ inputs:
88
description: "File to write output to"
99
required: true
1010
runs:
11-
using: "composite"
12-
steps:
13-
- name: Checkout action code
14-
uses: actions/checkout@v4
15-
with:
16-
ref: main
17-
repository: ${{ github.action_repository }}
18-
path: ./gha-summarizer
19-
20-
- name: Setup Go environment
21-
uses: actions/setup-go@v5
22-
with:
23-
go-version-file: ./gha-summarizer/go.mod
24-
25-
- name: Run templating
26-
run: go run ./gha-summarizer/main.go ${{ inputs.template }} ${{ inputs.output }}
27-
shell: bash
11+
using: docker
12+
image: Dockerfile
13+
args:
14+
- ${{ inputs.template }}
15+
- ${{ inputs.out-file }}

0 commit comments

Comments
 (0)