Skip to content

Commit 98ab6b0

Browse files
committed
fix: switch evolution workflow from GitHub App token to GITHUB_TOKEN (no app install needed)
1 parent 633279e commit 98ab6b0

1 file changed

Lines changed: 2 additions & 10 deletions

File tree

.github/workflows/evolve.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,9 @@ jobs:
1616
env:
1717
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
1818
steps:
19-
- name: Generate app token
20-
id: app-token
21-
uses: actions/create-github-app-token@v1
22-
with:
23-
app-id: ${{ secrets.APP_ID }}
24-
private-key: ${{ secrets.APP_PRIVATE_KEY }}
25-
2619
- uses: actions/checkout@v4
2720
with:
2821
fetch-depth: 0
29-
token: ${{ steps.app-token.outputs.token }}
3022

3123
- uses: actions/checkout@v4
3224
with:
@@ -58,8 +50,8 @@ jobs:
5850
OPENCODE_BASE_URL: https://opencode.ai/zen/go/v1
5951
ITERATE_PROVIDER: opencode
6052
ITERATE_MODEL: kimi-k2.5
61-
GH_TOKEN: ${{ steps.app-token.outputs.token }}
62-
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
53+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6355
run: |
6456
bash scripts/evolution/evolve.sh
6557

0 commit comments

Comments
 (0)