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 073747e commit 5963a8cCopy full SHA for 5963a8c
.github/workflows/generate-code.yml
@@ -34,11 +34,12 @@ jobs:
34
echo "DIFF_IS_EMPTY=$([[ -z "$diff_excluding_submodule" ]] && echo 'true' || echo 'false')" >> $GITHUB_ENV
35
echo "CURRENT_DATETIME=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
36
## Run if diff exists and pull request or merge queue, and make CI status failure (but allow renovate bot)
37
+ ## 29139614 is renovate bot's actor id
38
- if: >-
39
${{
40
(github.event_name == 'pull_request' || github.event_name == 'merge_group')
41
&& env.DIFF_IS_EMPTY != 'true'
- && github.actor != 'renovate[bot]'
42
+ && github.actor_id != 29139614
43
}}
44
run: |
45
echo "There are changes in the generated codes. Please run 'generate-code.py' and commit the changes." >&2
0 commit comments