Skip to content

Commit dc3c82c

Browse files
authored
chore: add sync request workflow (#14055)
1 parent 4a5a0b1 commit dc3c82c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/sync-request.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Sync request
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
dispatch:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Repository Dispatch
13+
uses: peter-evans/repository-dispatch@v3
14+
with:
15+
token: ${{ secrets.SYNC_REQUEST_TOKEN }}
16+
repository: sveltejs/svelte.dev
17+
event-type: sync-request
18+
client-payload: |-
19+
{
20+
"package": "svelte"
21+
}

0 commit comments

Comments
 (0)