CI pipeline for PR - (#88) fix(modules/asg): Accept entire SG list for ENI in ASG module #155
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: PR CI | |
run-name: "CI pipeline for PR - (#${{ github.event.number }}) ${{ github.event.pull_request.title }}" | |
permissions: | |
contents: read | |
actions: read | |
id-token: write | |
concurrency: | |
group: pr-${{ github.event.number }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
branches: ["main"] | |
jobs: | |
pr_ci_wrkflw: | |
name: Run CI | |
uses: PaloAltoNetworks/terraform-modules-swfw-ci-workflows/.github/workflows/[email protected] | |
if: github.actor != 'dependabot[bot]' | |
secrets: inherit | |
with: | |
cloud: aws | |
tf_version: 1.3 1.4 1.5 1.6 1.7 | |
validate_max_parallel: 20 | |
test_max_parallel: 10 | |
terratest_action: Plan # keep in mind that this has to start with capital letter | |
fail_fast: false | |
apply_timeout: 120 |