minutes/archive22 23 #23
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: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - staging | |
| - trying | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| # Rubber stamp approve the PR | |
| pass: | |
| name: pass | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Rubber stamp approve | |
| run: exit 0 | |
| # Refs: https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149 | |
| # | |
| # ALL THE PREVIOUS JOBS NEEDS TO BE ADDED TO THE `needs` SECTION OF THIS JOB! | |
| ci-success: | |
| name: ci | |
| if: github.event_name == 'push' && success() | |
| needs: | |
| - pass | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Mark the job as a success | |
| run: exit 0 |