SecRel Pipeline Configuration #1
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: SecRel Reusable Workflow | ||
on: | ||
# Trigger on every code push. The branches-ignore section can be deleted or modified | ||
push: | ||
branches-ignore: | ||
- lhdi-onboarding-769 | ||
# Trigger on all pull requests to main branch | ||
pull_request: | ||
branches: | ||
- master | ||
# Trigger on all published GitHub Releases | ||
release: | ||
types: [ "created" ] | ||
# Trigger manually | ||
workflow_dispatch: | ||
jobs: | ||
# Sample job that runs after the "dev-stuff" job, that calls the Tornado reusable workflow | ||
build-and-scan: | ||
# needs: [ dev-stuff ] | ||
name: Tornado Pipeline | ||
uses: department-of-veterans-affairs/lighthouse-tornado-secrel-pipeline/.github/workflows/pipeline.yml@v5 | ||
Check failure on line 26 in .github/workflows/secrel.yml GitHub Actions / .github/workflows/secrel.ymlInvalid workflow file
|
||
with: | ||
requires-prod-signing-keys: true | ||
config-file: .github/secrel/config.yml | ||
images: |- | ||
secrets: inherit |