-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (49 loc) · 1.61 KB
/
scheduled.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Scheduled
on:
schedule: [cron: "0 11 * * 6"] # 3 AM PST = 12 PM UDT, Saturdays
workflow_dispatch:
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# https://github.com/bcgov/quickstart-openshift-helpers
schema-spy:
name: SchemaSpy Documentation
uses: bcgov/quickstart-openshift-helpers/.github/workflows/[email protected]
with:
flyway_locations: migrations/rst
schemaspy_schema: rst
flyway_schema: rst
# Tests are run against dev application so we need to deploy first
# tests:
# name: Tests
# uses: ./.github/workflows/.tests.yml
# with:
# target: test
# Needs deployment to dev to have something to run against
# Run sequentially to reduce chances of rate limiting
# zap_scan:
# runs-on: ubuntu-24.04
# 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 }}