Skip to content

Commit

Permalink
chore: add sync request workflow (#12918)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris authored Oct 30, 2024
1 parent 345d770 commit e41a8e2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/sync-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Sync request

on:
push:
branches:
- main

jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.SYNC_REQUEST_TOKEN }}
repository: sveltejs/svelte.dev
event-type: sync-request
client-payload: |-
{
"package": "kit"
}

0 comments on commit e41a8e2

Please sign in to comment.