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 0029627 commit 0ead7b7Copy full SHA for 0ead7b7
.github/workflows/rebaseline-tests.yml
@@ -44,11 +44,12 @@ jobs:
44
echo "rebaseline_tests returned zero, expectations up-to-date"
45
# Exit early and don't create a PR
46
exit 0
47
- fi
48
- code=$?
49
- if [[ $code != 2 ]] ; then
50
- echo "rebaseline_tests.py failed with unexpected error $code"
51
- exit 1
+ else
+ code=$?
+ if [[ $code != 2 ]] ; then
+ echo "rebaseline_tests.py failed with unexpected error $code (expected 2)"
+ exit 1
52
+ fi
53
fi
54
git push origin testing
55
gh pr create --fill --base ${{ github.ref_name }}
0 commit comments