Files
repository-dispatch/.github/workflows/on-repository-dispatch.yml
Peter Evans 0ae1c4b014 Add action
2019-11-08 10:37:57 +09:00

13 lines
287 B
YAML

name: Repository Dispatch
on:
repository_dispatch:
types: [tests]
jobs:
autopep8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
ref: ${{ github.event.client_payload.ref }}
- run: echo ${{ github.event.client_payload.sha }}