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 3105f14 commit ed294b9Copy full SHA for ed294b9
.github/workflows/invalidations.yml
@@ -64,8 +64,7 @@ jobs:
64
echo "Invalidations on ${{ github.head_ref || github.ref_name }}: ${{ steps.invalidations-in-pr.outputs.total }} (${{ steps.invalidations-in-pr.outputs.deps }} via deps)" >> $GITHUB_STEP_SUMMARY
65
66
- name: "Check if the PR increases the number of invalidations"
67
+ if: ${{ fromJSON(steps.invalidations-in-pr.outputs.total) > fromJSON(steps.invalidations-baseline.outputs.total) }}
68
run: |
- if [ ${{ steps.invalidations-in-pr.outputs.total }} -gt ${{ steps.invalidations-baseline.outputs.total }} ]; then
69
echo "More invalidations have been introduced."
70
exit 1
71
- fi
0 commit comments