We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47936e2 commit 9f73312Copy full SHA for 9f73312
1 file changed
.github/workflows/pr-assistant.yml
@@ -13,7 +13,15 @@ jobs:
13
pr-assistant:
14
runs-on: ubuntu-latest
15
steps:
16
+ - name: Generate GitHub App token
17
+ id: app-token
18
+ uses: actions/create-github-app-token@v2
19
+ with:
20
+ app-id: ${{ secrets.CODEX_ASSISTANT_APP_ID }}
21
+ private-key: ${{ secrets.CODEX_ASSISTANT_PRIVATE_KEY }}
22
+
23
- uses: codex-team/action-pr-assistant@master
24
with:
25
check: description
26
mode: draft
27
+ token: ${{ steps.app-token.outputs.token }}
0 commit comments