Adding NOTICE file to the hab pkg #90
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: All checks pass | |
| # should this be removed? It seems duplicate of continue-on-error and other statuses in more complex workflows | |
| # ref: https://github.com/wechuli/allcheckspassed/tree/v1/ | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize, reopened, ready_for_review ] | |
| jobs: | |
| allchecks: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: read | |
| contents: read | |
| steps: | |
| - uses: wechuli/allcheckspassed@v1 | |
| with: | |
| # This seems to be working lately even for external | |
| # contributors, so maybe we don't need to exclude it? | |
| checks_exclude: "SonarCloud Code Analysis" | |
| # Retry every minute for 30 minutes... | |
| retries: 30 |