We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3279dec commit 28a1d7dCopy full SHA for 28a1d7d
1 file changed
.github/workflows/process-pipelines.yml
@@ -22,10 +22,12 @@ jobs:
22
if [[ "$(git diff --exit-code ./pipelines/pipelines_index.json)" =~ 'diff' ]]; then echo "IS_VALID=true" >> $GITHUB_ENV; else echo "IS_VALID=false" >> $GITHUB_ENV ;fi
23
- if: ${{ env.IS_VALID == 'true' }}
24
run: |
25
- git config --local user.email "action@github.com"
26
- git config --local user.name "GitHub Action"
+ git config --global user.email "vb-bot@google.com"
+ git config --global user.name "vb-bot"
27
git add .
28
git commit -m "Update pipelines_index.json"
29
git push
30
gh pr create -B main --title 'Update pipelines_index.json' --body 'Update pipelines index'
31
+ env:
32
+ GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
33
0 commit comments