We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b782590 commit 8166b1cCopy full SHA for 8166b1c
.github/workflows/post-dependabot.yml
@@ -27,7 +27,7 @@ jobs:
27
28
- name: check for modified testing/go.mod or testing/go.sum
29
id: testing-mod-check
30
- run: echo "modified=$(if git diff-index --quite HEAD -- testing/go.mod testing/go.sum; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT
+ run: echo "modified=$(if git diff-index --quiet HEAD -- testing/go.mod testing/go.sum; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT
31
32
- name: commit testing/go.mod and testing/go.sum files
33
if: steps.testing-mod-check.outputs.modified == 'true'
0 commit comments