Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/aquasec-night-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: AquaSec Night Scan

on:
schedule:
- cron: '43 2 * * *'
workflow_dispatch:
inputs:
dry-run:
description: Enable Dry Run mode
required: false
type: boolean
default: false

concurrency:
group: aquasec-night-scan-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
actions: read
issues: write

jobs:
aquasec-night-scan:
uses: AbsaOSS/organizational-workflows/.github/workflows/aquasec-scan.yml@d3e4ff77b60db1bcd5b485ccedf19d2216d39621
with:
dry-run: ${{ inputs.dry-run || false }}
min-severity: 'high'
project-number: 193
project-org: 'absa-group'
secrets:
AQUA_KEY: ${{ secrets.AQUA_KEY }}
AQUA_SECRET: ${{ secrets.AQUA_SECRET }}
AQUA_GROUP_ID: ${{ secrets.AQUA_GROUP_ID }}
AQUA_REPOSITORY_ID: ${{ secrets.AQUA_REPOSITORY_ID }}
TEAMS_WEBHOOK_URL: ${{ secrets.TEAMS_WEBHOOK_URL }}
Loading