Skip to content

Aggregate new audits #165

Aggregate new audits

Aggregate new audits #165

Workflow file for this run

jobs:
pull_request:
uses: ./.github/workflows/pull_request.yml
staging:
uses: ./.github/workflows/staging.yml
success:
runs-on: ubuntu-latest
needs: [pull_request, staging]
if: ${{ always() }}
steps:
- if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1
- if: ${{ contains(needs.*.result, 'cancelled') }}
run: exit 1
- if: ${{ contains(needs.*.result, 'skipped') }}
run: exit 1
on:
pull_request:
branches: [main]
merge_group:
type: [checks_requested]