Cherry pick b138f5226ae901b99ea34d40ab1eaed1c26445a4 #105
Workflow file for this run
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: PR | |
on: | |
pull_request: | |
types: ['opened', 'reopened', 'synchronize'] | |
branches: [ "master", release/* ] | |
paths: | |
- '**' # all files otherwise excludes wont work | |
- '!**/**/*.md' # ignore markdown files | |
jobs: | |
vet: | |
uses: ./.github/workflows/vet.yml | |
unit-test: | |
uses: ./.github/workflows/unit.yml | |
build: | |
uses: ./.github/workflows/build.yml | |
e2e: | |
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} | |
needs: [build, vet, unit-test] | |
uses: ./.github/workflows/e2e.yml | |
integration: | |
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }} | |
needs: [build, vet, unit-test] | |
uses: ./.github/workflows/integration.yml |