Skip to content

Commit

Permalink
CI: Try to trigger ASV
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Aug 13, 2023
1 parent fc1f43a commit 5fd1c25
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/trigger_asv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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 }}
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/[email protected]
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.pull_request.number }}"}'

0 comments on commit 5fd1c25

Please sign in to comment.