mirror of
https://github.com/peter-evans/repository-dispatch.git
synced 2026-06-11 11:21:25 +00:00
13 lines
284 B
YAML
13 lines
284 B
YAML
name: Repository Dispatch
|
|
on:
|
|
repository_dispatch:
|
|
types: [tests]
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.event.client_payload.ref }}
|
|
- run: echo ${{ github.event.client_payload.sha }}
|