Skip to content

Commit c359c57

Browse files
committed
Update tests
1 parent f7fecb2 commit c359c57

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/gha-summarizer.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@ jobs:
6262
repository: ${{ github.event.pull_request.head.repo.full_name }}
6363

6464
- name: Render template
65-
uses: docker://ghcr.io/void404/gha-summarizer/gha-summarizer@main
65+
uses: ./
6666
with:
67-
args: example/template.md out.md
67+
template: example/template.md
68+
out-file: out.md
6869

6970
- name: Check if the rendered file is different
7071
run: |
71-
diff --unified ./example/template.md ./out.md | tee diff.txt
72+
diff --unified ./example/result.md ./out.md | tee diff.txt
7273
if [ -s diff.txt ]; then
7374
echo "The rendered file is different from the template"
7475
exit 1

0 commit comments

Comments
 (0)