Files
repository-dispatch/.github/workflows/on-repository-dispatch.yml
2020-01-04 09:36:01 +09:00

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 }}