8000 Add Cookie Store API standard to Fetch workstream · whatwg/sg@0589860 · GitHub
[go: up one dir, main page]

Skip to content

Add Cookie Store API standard to Fetch workstream #64

Add Cookie Store API standard to Fetch workstream

Add Cookie Store API standard to Fetch workstream #64

Workflow file for this run

# This triggers the deploy workflows in whatwg/whatwg.org and
# participate.whatwg.org for changes here.
# https://developer.github.com/v3/repos/#create-a-repository-dispatch-event
name: Dispatch
on:
push:
branches:
- main
jobs:
dispatch:
name: Dispatch
runs-on: ubuntu-latest
steps:
- run: |
curl --retry 2 --fail -X POST \
-H "Authorization: token ${{ secrets.DISPATCH_TOKEN }}" \
-d '{"event_type":"sg_repo_updated"}' \
https://api.github.com/repos/whatwg/whatwg.org/dispatches
- run: |
curl --retry 2 --fail -X POST \
-H "Authorization: token ${{ secrets.DISPATCH_TOKEN }}" \
-d '{"event_type":"sg_repo_updated"}' \
https://api.github.com/repos/whatwg/participate.whatwg.org/dispatches
0