mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
23 lines
659 B
YAML
23 lines
659 B
YAML
name: Trigger full-sync on the tracker repo on push
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
permissions: {}
|
|
|
|
jobs:
|
|
api-trigger-workflow:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'MonsterDruide1/OdysseyDecomp'
|
|
steps:
|
|
- name: Curl the api to start workflow
|
|
run: |
|
|
curl -L \
|
|
-X POST \
|
|
-H "Accept: application/vnd.github+json" \
|
|
-H "Authorization: Bearer ${{ secrets.TRACKER_TOKEN }}" \
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
https://api.github.com/repos/MonsterDruide1/OdysseyDecompTracker/actions/workflows/155550252/dispatches \
|
|
-d '{"ref":"master"}'
|