19 lines
404 B
YAML
19 lines
404 B
YAML
name: HITL
|
|
|
|
on:
|
|
push:
|
|
branches: [ hitl ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
hitl:
|
|
runs-on: ubuntu-latest
|
|
environment: hitl
|
|
steps:
|
|
- uses: peter-evans/repository-dispatch@v1
|
|
with:
|
|
token: ${{ secrets.DISPATCH_PAT }}
|
|
event-type: stabilizer
|
|
repository: quartiq/hitl
|
|
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
|