mirror of
https://github.com/peter-evans/repository-dispatch.git
synced 2026-06-11 11:21:25 +00:00
14 lines
376 B
YAML
14 lines
376 B
YAML
name: Create Repository Dispatch
|
|
on: push
|
|
jobs:
|
|
createRepositoryDispatch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Repository Dispatch
|
|
uses: ./
|
|
with:
|
|
token: ${{ secrets.REPO_ACCESS_TOKEN }}
|
|
event-type: tests
|
|
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
|