We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4ddb95 commit ac98e7fCopy full SHA for ac98e7f
README.md
@@ -54,7 +54,7 @@ jobs:
54
echo "Invalidations on default branch: ${{ steps.invs_default.outputs.total }} (${{ steps.invs_default.outputs.deps }} via deps)" >> $GITHUB_STEP_SUMMARY
55
echo "This branch: ${{ steps.invs_pr.outputs.total }} (${{ steps.invs_pr.outputs.deps }} via deps)" >> $GITHUB_STEP_SUMMARY
56
- name: Check if the PR does increase number of invalidations
57
- if: steps.invs_pr.outputs.total > steps.invs_default.outputs.total
+ if: ${{ fromJSON(steps.invs_pr.outputs.total) > fromJSON(steps.invs_default.outputs.total) }}
58
run: exit 1
59
```
60
0 commit comments