Github Action to broadcast an event to all other repositories using repository dispatch event.
A repo scoped GitHub Personal Access Token.
A custom event type.
Here is an example how to broadcast an event:
uses: geofjamg/[email protected]
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
event-type: my-event
Here is an example how to trigger a workflow from a repository dispatch event:
name: On event workflow
on:
repository_dispatch:
types: my-event
jobs: