ci: synced file(s) with honestbank/.github #98
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
# yamllint disable rule:line-length | ||
# Use template from https://github.com/honestbank/workflows/tree/main/examples/repository-workflows | ||
--- | ||
name: "repository-shiftleft-terraform" | ||
permissions: read-all | ||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
branches: | ||
- test | ||
- dev | ||
- qa | ||
- prod | ||
- main | ||
push: | ||
branches: | ||
- test | ||
- dev | ||
- qa | ||
- prod | ||
- main | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
# schedule a job to run every day at 17:30 UTC | ||
- cron: '30 17 * * *' | ||
jobs: | ||
repository-shiftleft-terraform: | ||
name: repository-shiftleft-terraform | ||
uses: honestbank/workflows/.github/workflows/shared-terraform-shiftleft.yaml@main | ||
Check failure on line 30 in .github/workflows/shiftleft-terraform.yaml GitHub Actions / .github/workflows/shiftleft-terraform.yamlInvalid workflow file
|
||
with: | ||
repo_name: ${{ github.event.repository.name }} | ||
secrets: inherit |