generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: disable unneeded workflows (#10)
* chore: disable tests workflow * chore: disable prod deployment due to limited compute resources * chore: disable scheduled zap scans
- Loading branch information
1 parent
9d87f06
commit 2b8aa06
Showing
3 changed files
with
70 additions
and
70 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,34 +60,34 @@ jobs: | |
uses: bcgov/quickstart-openshift-helpers/.github/workflows/[email protected] | ||
|
||
|
||
tests: | ||
name: Tests | ||
uses: ./.github/workflows/.tests.yml | ||
with: | ||
target: test | ||
# tests: | ||
# name: Tests | ||
# uses: ./.github/workflows/.tests.yml | ||
# with: | ||
# target: test | ||
|
||
# Run sequentially to reduce chances of rate limiting | ||
zap_scan: | ||
runs-on: ubuntu-latest | ||
name: ZAP Scans | ||
env: | ||
DOMAIN: apps.silver.devops.gov.bc.ca | ||
PREFIX: ${{ github.event.repository.name }}-test | ||
steps: | ||
- name: ZAP Scan | ||
uses: zaproxy/[email protected] | ||
with: | ||
allow_issue_writing: true | ||
artifact_name: "zap_backend" | ||
cmd_options: "-a" | ||
issue_title: "ZAP: Backend" | ||
target: https://${{ env.PREFIX }}-frontend.${{ env.DOMAIN }}/api | ||
# zap_scan: | ||
# runs-on: ubuntu-latest | ||
# name: ZAP Scans | ||
# env: | ||
# DOMAIN: apps.silver.devops.gov.bc.ca | ||
# PREFIX: ${{ github.event.repository.name }}-test | ||
# steps: | ||
# - name: ZAP Scan | ||
# uses: zaproxy/[email protected] | ||
# with: | ||
# allow_issue_writing: true | ||
# artifact_name: "zap_backend" | ||
# cmd_options: "-a" | ||
# issue_title: "ZAP: Backend" | ||
# target: https://${{ env.PREFIX }}-frontend.${{ env.DOMAIN }}/api | ||
|
||
- name: ZAP Scan - Frontend | ||
uses: zaproxy/[email protected] | ||
with: | ||
allow_issue_writing: true | ||
artifact_name: "zap_frontend" | ||
cmd_options: "-a" | ||
issue_title: "ZAP: Frontend" | ||
target: https://${{ env.PREFIX }}-frontend.${{ env.DOMAIN }} | ||
# - name: ZAP Scan - Frontend | ||
# uses: zaproxy/[email protected] | ||
# with: | ||
# allow_issue_writing: true | ||
# artifact_name: "zap_frontend" | ||
# cmd_options: "-a" | ||
# issue_title: "ZAP: Frontend" | ||
# target: https://${{ env.PREFIX }}-frontend.${{ env.DOMAIN }} |