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 792ddfd commit 0fe9116Copy full SHA for 0fe9116
.github/workflows/conference-sync.yml
@@ -1,7 +1,8 @@
1
# Sched's API rate limits are very limited, so we sync non-critical part of the data on a cron.
2
on:
3
- schedule:
4
- - cron: "*/10 * * * *" # every ten minutes
+ workflow_dispatch:
+ # schedule:
5
+ # - cron: "*/10 * * * *" # every ten minutes
6
7
jobs:
8
sync:
@@ -15,6 +16,8 @@ jobs:
15
16
- name: Sync conference data from Sched
17
run: |
18
tsx scripts/sync-sched/sync.ts --year 2025
19
+ env:
20
+ SCHED_ACCESS_TOKEN_2025: ${{ secrets.SCHED_ACCESS_TOKEN_2025 }}
21
22
- name: Commit changes
23
uses: stefanzweifel/git-auto-commit-action@v5
0 commit comments