This repository was archived by the owner on Dec 10, 2025. It is now read-only.
[IND-4227] [COMPLIANCE] Update Copyright Headers #7134
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: Provider Integration Tests - PR | |
| on: | |
| merge_group: | |
| types: [checks_requested] | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| - reopened | |
| jobs: | |
| provider_integration_test: | |
| name: "Provider Integration Tests - PR" | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci/skip-provider-integration') && !contains(github.event.pull_request.labels.*.name, 'ci/unit-only') }} | |
| uses: ./.github/workflows/provider-integration.yml | |
| with: | |
| concurrency_group_prefix: pr | |
| secrets: inherit | |
| results: | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| name: "Provider Integration Tests - PR - Result" | |
| needs: [provider_integration_test] | |
| steps: | |
| - run: exit 1 | |
| if: >- | |
| ${{ | |
| contains(needs.*.result, 'failure') | |
| || contains(needs.*.result, 'cancelled') | |
| }} |