We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f4b75 commit dc267faCopy full SHA for dc267fa
1 file changed
.github/workflows/conference-sync.yml
@@ -11,16 +11,22 @@ jobs:
11
contents: write
12
steps:
13
- name: Checkout code
14
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
15
+ with:
16
+ ref: source
17
18
- name: Sync conference data from Sched
- run: |
- tsx scripts/sync-sched/sync.ts --year 2026
19
+ run: pnpm exec tsx scripts/sync-sched/sync.ts --year 2026
20
env:
21
SCHED_ACCESS_TOKEN_2026: ${{ secrets.SCHED_ACCESS_TOKEN_2026 }}
22
23
- name: Commit changes
- uses: stefanzweifel/git-auto-commit-action@v5
24
+ uses: planetscale/ghcommit-action@v0.1.6
25
with:
26
file_pattern: "scripts/sync-sched/*.json"
27
commit_message: "Sync conference data from Sched"
28
+ repo: ${{ github.repository }}
29
+ branch: source
30
+ empty: false
31
+ env:
32
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments