Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.

Commit ee63a51

Browse files
authored
Update js-api-build.yml
1 parent 83db6f6 commit ee63a51

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/js-api-build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,16 @@ jobs:
112112
- name: Trigger ADF alpha
113113
shell: bash
114114
if: github.event.schedule == '0 3 * * *'
115-
run: ./scripts/update-project.sh -p ${{ github.run_number }} -t ${{ secrets.BOT_GITHUB_TOKEN }} -v alpha
115+
run: |
116+
git config --global user.email ${{ secrets.BOT_GITHUB_EMAIL }}
117+
git config --global user.name ${{ secrets.BOT_GITHUB_USERNAME }}
118+
./scripts/update-project.sh -p ${{ github.run_number }} -t ${{ secrets.BOT_GITHUB_TOKEN }} -v alpha
116119
117120
- name: Trigger ADF master
118121
shell: bash
119122
if: github.ref == 'refs/heads/master'
120-
run: ./scripts/update-project.sh -p ${{ github.run_number }} -t ${{ secrets.BOT_GITHUB_TOKEN }} -v latest
123+
run: |
124+
git config --global user.email ${{ secrets.BOT_GITHUB_EMAIL }}
125+
git config --global user.name ${{ secrets.BOT_GITHUB_USERNAME }}
126+
./scripts/update-project.sh -p ${{ github.run_number }} -t ${{ secrets.BOT_GITHUB_TOKEN }} -v latest
121127

0 commit comments

Comments
 (0)