ci: set token for release-please to do PR creation
#327
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: Test and clippy Airbender | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| on: | |
| workflow_run: | |
| workflows: ['Build and push images'] | |
| types: [completed] | |
| pull_request: | |
| jobs: | |
| test: | |
| if: github.event_name == 'pull_request' || github.event.workflow_run.conclusion == 'success' | |
| uses: ./.github/workflows/test-zkvm.yml | |
| with: | |
| zkvm: airbender | |
| skip_prove_test: true | |
| cuda: true |