Skip to content

trigger-asv-command #24

trigger-asv-command

trigger-asv-command #24

Workflow file for this run

name: Trigger asv
on:
repository_dispatch:
types: [trigger-asv-command]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
triggerasv:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest}
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
fetch-depth: 0
- uses: convictional/trigger-workflow-and-wait@v1.6.5
with:
owner: airspeed-velocity
repo: asv
github_token: ${{ secrets.ASV_TOK }}
workflow_file_name: triggered.yml
ref: master
wait_workflow: true
client_payload: '{"pr_number": "${{ github.event.client_payload.slash_command.args.named.pr_number }}"}'