Migrate bridge e2e tests from forEachEngine to regressionTest harness #53
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: Benchmark Cleanup | |
| on: | |
| pull_request: | |
| types: [closed] | |
| permissions: | |
| contents: read | |
| jobs: | |
| archive_pr_branch: | |
| name: Archive closed PR branch with Bencher | |
| if: github.event.pull_request.head.repo.full_name == github.repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bencherdev/bencher@main | |
| - name: Archive closed PR branch with Bencher | |
| continue-on-error: true | |
| run: | | |
| bencher archive \ | |
| --project the-bridge \ | |
| --token '${{ secrets.BENCHER_API_TOKEN }}' \ | |
| --branch "$GITHUB_HEAD_REF" |