MOD-6722 Fix mutation ordering for array commands with recursive paths #1383
Workflow file for this run
This file contains hidden or 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: Check if needs trigger benchmark | |
| on: | |
| pull_request: | |
| types: [opened, labeled, unlabeled, synchronize] | |
| jobs: | |
| haslabel: | |
| name: analyse labels | |
| runs-on: ubuntu-latest | |
| outputs: | |
| benchmark: ${{ steps.haslabel.outputs.labeled-run-benchmark }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check if labeled with run-benchmark | |
| id: haslabel | |
| uses: DanielTamkin/[email protected] | |
| with: | |
| contains: 'run-benchmark' | |
| perf-ci: | |
| name: Trigger | |
| needs: haslabel | |
| if: needs.haslabel.outputs.benchmark | |
| uses: ./.github/workflows/benchmark-runner.yml | |
| secrets: inherit |