Continous Release #47
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: Release CI | |
run-name: "Continous Release" | |
permissions: | |
contents: write | |
issues: read | |
id-token: write | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 1 * * 4" # this means every Thursday @1am UTC | |
concurrency: release | |
jobs: | |
release_wrkflw: | |
name: Do release | |
uses: PaloAltoNetworks/terraform-modules-swfw-ci-workflows/.github/workflows/[email protected] | |
if: github.actor != 'dependabot[bot]' | |
secrets: inherit | |
with: | |
cloud: aws | |
validate_max_parallel: 20 | |
test_max_parallel: 5 | |
terratest_action: Idempotence # keep in mind that this has to start with capital letter | |
fail_fast: false | |
apply_timeout: 120 |