20 lines
692 B
YAML
20 lines
692 B
YAML
name: Aikido Security Full Scan
|
|
description: >
|
|
Composite wrapper around the Aikido full-release Docker scan.
|
|
Automatically resolves repository and branch info from the forgejo context.
|
|
Only the API key needs to be supplied by the caller.
|
|
|
|
inputs:
|
|
apikey:
|
|
description: Aikido CI API key
|
|
required: true
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: https://schmalz-git.git.onstackit.cloud/schmalz/shared-actions/internal-aikido-full-scan@internal-aikido-full-scan-v1
|
|
with:
|
|
apikey: ${{ inputs.apikey }}
|
|
organization: ${{ forgejo.repository_owner }}
|
|
repository-name: ${{ forgejo.event.repository.name }}
|
|
branch-name: ${{ forgejo.ref_name }}
|