-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3814cf4
commit 249a8ca
Showing
2 changed files
with
26 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: ZAP Baseline Scan | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
envname: | ||
description: 'dev or test' | ||
required: true | ||
default: 15 | ||
jobs: | ||
|
||
zap-baseline-scan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ZAP Full Scan on Frontend | ||
uses: zaproxy/[email protected] | ||
with: | ||
target: "https://itvr-${{ github.event.inputs.envname }}.apps.silver.devops.gov.bc.ca" | ||
issue_title: "ZAP ${{ github.event.inputs.envname }} Frontend Baseline Scan Report" | ||
- name: ZAP Full Scan on Backend | ||
uses: zaproxy/[email protected] | ||
with: | ||
target: 'https://itvr-backend-${{ github.event.inputs.envname }}.apps.silver.devops.gov.bc.ca' | ||
issue_title: "ZAP ${{ github.event.inputs.envname }} Backend Baseline Scan Report" |
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 |
---|---|---|
|
@@ -24,7 +24,9 @@ jobs: | |
uses: zaproxy/[email protected] | ||
with: | ||
target: 'https://itvr-test.apps.silver.devops.gov.bc.ca' | ||
issue_title: ZAP Test Frontend Baseline Scan Report | ||
- name: ZAP Full Scan on Backend | ||
uses: zaproxy/[email protected] | ||
with: | ||
target: 'https://itvr-backend-test.apps.silver.devops.gov.bc.ca' | ||
target: 'https://itvr-backend-test.apps.silver.devops.gov.bc.ca' | ||
issue_title: ZAP Test Backend Baseline Scan Report |