mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-22 03:47:27 +01:00
22 lines
432 B
YAML
22 lines
432 B
YAML
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": "svelte"
|
|
}
|