fix(checkout): allow adding properties to checkout context settings (… #439
This file contains 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: 'On push ⚙️' | |
on: | |
push: | |
branches: | |
- main | |
- alpha | |
- beta | |
- rc | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Run setup initially to save cache and time on subsequent jobs | |
setup: | |
uses: ./.github/workflows/--setup.yml | |
secrets: inherit | |
test-unit: | |
needs: setup | |
uses: ./.github/workflows/--test-unit.yml | |
secrets: inherit | |
test-integration: | |
needs: setup | |
uses: ./.github/workflows/--test-integration.yml | |
secrets: inherit | |
analyse: | |
needs: setup | |
uses: ./.github/workflows/--analyse.yml | |
secrets: inherit | |
quality: | |
needs: setup | |
uses: ./.github/workflows/--quality.yml | |
secrets: inherit | |
with: | |
dry-run: true | |
rebase-prs: | |
needs: | |
- test-unit | |
- test-integration | |
- analyse | |
- quality | |
uses: ./.github/workflows/--rebase-prs.yml | |
secrets: inherit | |
notify-on-failure: | |
needs: | |
- setup | |
- test-unit | |
- test-integration | |
- analyse | |
- quality | |
if: always() && contains(needs.*.result, 'failure') | |
uses: myparcelnl/actions/.github/workflows/notify-on-failure.yml@v4 | |
secrets: inherit |