This repository was archived by the owner on Dec 10, 2025. It is now read-only.
chore: add missing dependency on fs-extra to @cdktf/hcl-tools
#7326
Workflow file for this run
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: Examples - PR | |
| on: | |
| merge_group: | |
| types: [checks_requested] | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| - reopened | |
| jobs: | |
| examples: | |
| name: "Examples Integration Tests - PR" | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci/skip-examples') && !contains(github.event.pull_request.labels.*.name, 'ci/unit-only') }} | |
| uses: ./.github/workflows/examples.yml | |
| with: | |
| concurrency_group_prefix: pr | |
| secrets: inherit | |
| results: | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| name: "Examples Integration Tests - PR - Result" | |
| needs: [examples] | |
| steps: | |
| - run: exit 1 | |
| if: >- | |
| ${{ | |
| contains(needs.*.result, 'failure') | |
| || contains(needs.*.result, 'cancelled') | |
| }} |