fix(provider-generator): Skip statement
block for rule
block in aws_wafv2_web_acl
and aws_wafv2_rule_group
resources
#5379
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: 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') | |
}} |