We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7fecb2 commit c359c57Copy full SHA for c359c57
.github/workflows/gha-summarizer.yaml
@@ -62,13 +62,14 @@ jobs:
62
repository: ${{ github.event.pull_request.head.repo.full_name }}
63
64
- name: Render template
65
- uses: docker://ghcr.io/void404/gha-summarizer/gha-summarizer@main
+ uses: ./
66
with:
67
- args: example/template.md out.md
+ template: example/template.md
68
+ out-file: out.md
69
70
- name: Check if the rendered file is different
71
run: |
- diff --unified ./example/template.md ./out.md | tee diff.txt
72
+ diff --unified ./example/result.md ./out.md | tee diff.txt
73
if [ -s diff.txt ]; then
74
echo "The rendered file is different from the template"
75
exit 1
0 commit comments