feat(lib): Add DynamicListTerraformIterator with support for lists or sets with objects that have properties that are only known at apply time #4600
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') | |
}} |