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 ba64636 commit bb1a779Copy full SHA for bb1a779
1 file changed
.github/workflows/codex-update.yml
@@ -64,8 +64,15 @@ jobs:
64
git commit -m "Update codex to ${{ needs.check.outputs.version }}"
65
git push origin "${{ needs.check.outputs.branch }}"
66
67
+ - name: Generate GitHub App token
68
+ id: app-token
69
+ uses: actions/create-github-app-token@v1
70
+ with:
71
+ app-id: ${{ vars.GH_APP_ID }}
72
+ private-key: ${{ secrets.GH_APP_TOKEN }}
73
+
74
- name: Create PR
75
env:
- GH_TOKEN: ${{ secrets.GH_CREATE_PR_TOKEN }}
76
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
77
run: |
78
gh pr create --title "Update codex to ${{ needs.check.outputs.version }}" --body "Automated codex update" --label "codex-update"
0 commit comments