20 lines
452 B
YAML
20 lines
452 B
YAML
name: Notify downstream repositories
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
dispatch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Wait for npm propagation
|
|
run: sleep 30
|
|
|
|
- name: Dispatch to bluprint_graphics-kit
|
|
uses: peter-evans/repository-dispatch@v4
|
|
with:
|
|
token: ${{ secrets.REPO_PAT_TOKEN }}
|
|
repository: reuters-graphics/bluprint_graphics-kit
|
|
event-type: dependency-updated
|