-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (40 loc) · 1020 Bytes
/
trigger_asv.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Trigger asv
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
buildmamba:
runs-on: ${{ matrix.config.os }}
env:
asv_trigger_tok: ${{ secrets.ASV_TOK }}
name: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest}
secrets:
ASV_TOK: ${{ secrets.ASV_TOK }}
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
fetch-depth: 0
- name: Speak secrets
run: echo "blah"
- uses: convictional/[email protected]
with:
owner: airspeed-velocity
repo: asv
github_token: ${{ env.asv_trigger_tok }}
workflow_file_name: triggered.yml
ref: master
wait_workflow: true
client_payload: '{"pr_number": "${{ github.event.pull_request.number }}"}'