We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0485ef0 commit d84324fCopy full SHA for d84324f
.github/workflows/generate-code.yml
@@ -36,6 +36,8 @@ jobs:
36
- if: ${{ github.event_name == 'pull_request' && env.DIFF_IS_EMPTY != 'true' && github.actor != 'renovate[bot]' }}
37
run: |
38
echo "There are changes in the generated codes. Please run 'generate-code.py' and commit the changes." >&2
39
+ echo "The files with differences are as follows." >&2
40
+ echo "$(git --no-pager diff --name-only HEAD)" >&2
41
exit 1
42
## Run if diff exists and event is not pull request, and make PR
43
- if: ${{ github.event_name != 'pull_request' && env.DIFF_IS_EMPTY != 'true' }}
0 commit comments