Merge pull request 'fix: strip leading slash from forgejo.repository in aikido full scan' (#29) from fix/aikido-full-scan-strip-leading-slash into main

Reviewed-on: #29
Reviewed-by: Marcel Frey <Marcel.Frey@schmalz.de>
This commit is contained in:
Michael.Seele@schmalz.de 2026-05-21 07:55:55 +00:00
commit 038b488a6b
Signed by: schmalz-git.git.onstackit.cloud
GPG key ID: 569DFBE669A0D544

View file

@ -12,8 +12,15 @@ inputs:
runs:
using: composite
steps:
- name: Normalize repository name
id: repo
shell: bash
run: |
repo="${{ forgejo.repository }}"
echo "name=${repo#/}" >> $GITHUB_OUTPUT
- uses: https://schmalz-git.git.onstackit.cloud/schmalz/shared-actions/internal-aikido-full-scan@internal-aikido-full-scan-v1
with:
apikey: ${{ inputs.apikey }}
repository-name: ${{ forgejo.repository }}
repository-name: ${{ steps.repo.outputs.name }}
branch-name: ${{ forgejo.ref_name }}