Added logic to validate finding reference uniqueness (#4283) #804
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: Deploy to Development and Management Environment | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
- '.github/ISSUE_TEMPLATE/**' | |
jobs: | |
# ensure that every time a push to main occurs, the container is built and published to ghcr | |
build-container: | |
uses: ./.github/workflows/build-docker-container.yml | |
secrets: inherit | |
permissions: | |
contents: read | |
packages: write | |
with: | |
docker-name: fac | |
image-name: web-container | |
repo-name: gsa-tts/fac | |
work-dir: ./backend | |
testing: | |
needs: [build-container] | |
uses: ./.github/workflows/testing-from-ghcr.yml | |
secrets: inherit | |
linting: | |
uses: ./.github/workflows/linting.yml | |
secrets: inherit | |
# deploy to Dev & Management spaces | |
deploy-infrastructure-dev: | |
name: Deploy infrastructure (development) | |
needs: | |
- testing | |
uses: ./.github/workflows/terraform-apply-env.yml | |
with: | |
environment: "dev" | |
autoapprove: false | |
secrets: inherit | |
deploy-infastructure-meta: | |
name: Deploy infrastructure (meta) | |
needs: | |
- testing | |
uses: ./.github/workflows/terraform-apply-env.yml | |
with: | |
environment: "meta" | |
autoapprove: false | |
secrets: inherit | |
new-relic-record: | |
name: Record deployment to New Relic | |
needs: | |
- deploy-infrastructure-dev | |
uses: ./.github/workflows/new-relic-deployment.yml | |
with: | |
environment: "dev" | |
secrets: inherit | |
deploy-dev: | |
name: Deploy application | |
needs: | |
- deploy-infrastructure-dev | |
uses: ./.github/workflows/deploy-application.yml | |
with: | |
environment: "dev" | |
secrets: inherit | |
scan-dev-post-deploy: | |
name: ZAP Scan | |
needs: | |
- deploy-dev | |
uses: ./.github/workflows/zap-scan.yml | |
with: | |
url: "https://fac-dev.app.cloud.gov/" | |
generate-e2e-test-data: | |
needs: | |
- deploy-dev | |
name: | |
uses: ./.github/workflows/end-to-end-test-data-generator.yml | |
secrets: inherit | |
with: | |
environment: "dev" |