Skip to content
Merged
Show file tree
Hide file tree
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: '45 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@3b6a6b035bc2ddd0b0f2a8f8854df19314474312
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 }}
3 changes: 3 additions & 0 deletions .github/workflows/release_draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ jobs:
print-empty-chapters: false
row-format-issue: '{type}: {number} _{title}_ by {developers} in {pull-requests}'
row-format-pr: '{number} _{title}_ by {developers}'
service-chapter-exclude: |
Closed Issues without Pull Request ⚠️:
- [scope:security, type:tech-debt]

- name: Create and push tag
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3
Expand Down
Loading