We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24e490f commit 7f05bd3Copy full SHA for 7f05bd3
.github/workflows/issue_classifier.yml
@@ -11,10 +11,18 @@ jobs:
11
- uses: actions/checkout@v6
12
with:
13
fetch-depth: 0
14
+steps:
15
+ - name: Generate GitHub App token
16
+ id: app-token
17
+ uses: actions/create-github-app-token@v1
18
+ with:
19
+ app-id: ${{ secrets.CI_BOT_APP_ID }}
20
+ private-key: ${{ secrets.CI_BOT_PRIVATE_KEY }}
21
+
22
- name: Classify Issues as Good First Issues
23
uses: run-llama/issue-classifier@v0.1.0
24
25
llama-cloud-api-key: ${{ secrets.LLAMA_CLOUD_API_KEY }}
- github-token: ${{ secrets.GITHUB_TOKEN }}
26
+ github-token: ${{ steps.app-token.outputs.token }}
27
repository-owner: "run-llama"
28
repository-name: "llama_index"
0 commit comments