Skip to content

Commit 203709a

Browse files
committed
Fix snake workflow to use correct GitHub token
1 parent 25c76e6 commit 203709a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/snake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Generate Snake
22

33
on:
44
schedule:
5-
- cron: "0 */2 * * *" # every 12 hours
5+
- cron: "0 */1 * * *" # every 12 hours
66
workflow_dispatch:
77
push:
88
branches:
@@ -31,4 +31,4 @@ jobs:
3131
target_branch: output
3232
build_dir: dist
3333
env:
34-
GITHUB_TOKEN: ${{ secrets.SECRET_TOKEN }}
34+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)