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 840c993 commit 46df396Copy full SHA for 46df396
.github/workflows/build_clangrt_builtins.yml
@@ -59,7 +59,7 @@ jobs:
59
needs: merge
60
runs-on: ubuntu-latest
61
name: "Pull Request Create"
62
-# if: ${{ success() && inputs.create_pr }}
+ if: ${{ success() && inputs.create_pr }}
63
continue-on-error: true
64
steps:
65
- name: Clone repository
@@ -76,6 +76,12 @@ jobs:
76
name: arch
77
78
- name: Print matrix
79
+ env:
80
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
81
run: |
82
ls -l
83
git status
84
+ git switch --create sdk_libs_update
85
+ git add arch/${{ matrix.target.se }}/lib
86
+ git status
87
+ gh pr create -B ${{ inputs.target_sdk_branch }} --title '[SDK_LIBS_UPDATE] Updating static SDK libraries' --body 'Created by Github action'
0 commit comments