mirror of
https://github.com/peter-evans/repository-dispatch.git
synced 2026-06-11 11:21:25 +00:00
18 lines
424 B
YAML
18 lines
424 B
YAML
name: Test Dispatch
|
|
on: workflow_dispatch
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Test repository dispatch
|
|
uses: peter-evans/repository-dispatch@v2
|
|
with:
|
|
# token: ${{ secrets.PUBLIC_REPO_SCOPED_TOKEN }}
|
|
event-type: tests
|
|
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
|