Skip to content

Commit fb7eec8

Browse files
DEBUG: PR with clangrt 12
1 parent 493cee2 commit fb7eec8

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/build_clangrt_builtins.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ on:
1515
# TODO: remove this next line before merging!
1616
push:
1717

18-
jobs:
18+
env:
19+
GIT_USER_EMAIL: '[email protected]'
20+
GIT_USER_NAME: 'SDKLibsUpdaterGithub'
21+
UPDATE_BRANCH: 'sdk_libs_update'
1922

23+
jobs:
2024
build:
2125
runs-on: ubuntu-latest
2226
container:
@@ -79,11 +83,10 @@ jobs:
7983
env:
8084
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8185
run: |
82-
git config --global user.email '[email protected]'
83-
git config --global user.name 'SDKLibsUpdaterGithub'
84-
git status
85-
git switch --create sdk_libs_update
86+
git config --global user.email ${{ env.GIT_USER_EMAIL }}
87+
git config --global user.name ${{ env.GIT_USER_NAME }}
88+
git switch --create ${{ env.UPDATE_BRANCH }}
8689
git add -A .
8790
git commit -m 'Updating static SDK libraries'
88-
git status
91+
git push -u origin ${{ env.UPDATE_BRANCH }}
8992
gh pr create -B ${{ inputs.target_sdk_branch }} --title '[SDK_LIBS_UPDATE] Updating static SDK libraries' --body 'Created by Github action'

0 commit comments

Comments
 (0)