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 e5daf04 commit 8b20edbCopy full SHA for 8b20edb
1 file changed
.github/workflows/codex-update.yml
@@ -48,7 +48,16 @@ jobs:
48
BRANCH: ${{ needs.check.outputs.branch }}
49
VERSION: ${{ needs.check.outputs.version }}
50
steps:
51
+ - name: Generate GitHub token
52
+ uses: actions/create-github-app-token@v2
53
+ id: generate-token
54
+ with:
55
+ app-id: ${{ secrets.RELEASE_PLZ_APP_ID }}
56
+ private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }}
57
+
58
- uses: actions/checkout@v4
59
60
+ token: ${{ steps.generate-token.outputs.token }}
61
62
- name: Configure git user and prepare branch
63
run: |
@@ -86,6 +95,8 @@ jobs:
86
95
git push -- origin "$BRANCH"
87
96
88
97
- name: Create PR
98
+ env:
99
+ GH_TOKEN: ${{ steps.generate-token.outputs.token }}
89
100
90
101
echo -e "[What's new](https://github.com/openai/codex/releases/tag/rust-v${VERSION})\n\n$(cat pr-body.md 2>/dev/null || true)" > pr-body.md
91
102
0 commit comments