Benchmark Merge Queue #136
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark Merge Queue | |
on: | |
merge_group: | |
types: [checks_requested] | |
# cancel previous job runs for the same workflow + pr | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref_name != 'main' }} | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run Benchmark | |
uses: convictional/[email protected] | |
with: | |
owner: ${{ github.repository_owner }} | |
repo: 'rspack-ecosystem-benchmark' | |
workflow_file_name: 'bench_rspack_merge_queue.yml' | |
github_token: ${{ secrets.RSPACK_BOT_ACCESS_TOKEN }} | |
ref: 'main' | |
client_payload: '{"rspack_ref":"${{ github.ref }}"}' |