Compare commits
1 commit
main
...
feature/ai
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e276d4e67 |
2 changed files with 41 additions and 0 deletions
18
.forgejo/workflows/full-scan-aikido.yml
Normal file
18
.forgejo/workflows/full-scan-aikido.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: Aikido Security Full Scan
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
jobs:
|
||||
aikido-full-scan:
|
||||
name: Aikido Security Full Scan
|
||||
runs-on: stackit-ubuntu-22
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: https://schmalz-git.git.onstackit.cloud/schmalz/shared-actions/checkout@checkout-v1
|
||||
|
||||
- name: Run Aikido full scan
|
||||
uses: https://schmalz-git.git.onstackit.cloud/schmalz/shared-actions/aikido-full-scan@aikido-full-scan-v1
|
||||
with:
|
||||
apikey: ${{ secrets.AIKIDO_CLIENT_API_KEY }}
|
||||
23
.forgejo/workflows/pr-check-aikido.yml
Normal file
23
.forgejo/workflows/pr-check-aikido.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Aikido Security PR Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
concurrency:
|
||||
group: ${{ forgejo.workflow }}-${{ forgejo.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
aikido-security:
|
||||
name: Aikido Security Scan
|
||||
runs-on: stackit-ubuntu-22
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: https://schmalz-git.git.onstackit.cloud/schmalz/shared-actions/checkout@checkout-v1
|
||||
|
||||
- name: Security scan
|
||||
uses: https://schmalz-git.git.onstackit.cloud/schmalz/shared-actions/aikido-pr-scan@aikido-pr-scan-v1
|
||||
with:
|
||||
apikey: ${{ secrets.AIKIDO_CLIENT_API_KEY }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue