Improve Cloud Build module for parallel builds and multi-stage Docker caching #230
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: Gerald - Notify and Request Reviewers On Pull Request | |
| 'on': | |
| pull_request: | |
| # ready_for_review isn't included by default, so we add it | |
| # here to have this workflow re-run when a pr is converted | |
| # from "draft" to "not draft". | |
| # We also add "edited" to re-check when the base branch | |
| # is changed. | |
| types: [opened, synchronize, reopened, ready_for_review, edited] | |
| jobs: | |
| gerald: | |
| # Don't re-run if only the title or body changes | |
| if: "github.event.action != 'edited' || github.event.changes.base != null" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: Khan/actions@f6c653b0e6df0a0e1a87e86d83f67263841c79f6 # gerald-pr-v3 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| admin-token: ${{ secrets.KHAN_ACTIONS_BOT_TOKEN }} |