Skip to content

feat: Füge Skripte für schnelle Entwicklungsprüfungen und vollständig… #1

feat: Füge Skripte für schnelle Entwicklungsprüfungen und vollständig…

feat: Füge Skripte für schnelle Entwicklungsprüfungen und vollständig… #1

Workflow file for this run

name: 🔒 Security Management
on:
push:
branches:
- main
tags:
- 'v*.*.*'
- 'v*'
- '[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches: [main]
paths:
- 'docs/SECURITY.template.MD'
workflow_dispatch:
inputs:
force-update:
description: 'Force security policy update even without changes'
type: boolean
default: false
custom-version:
description: 'Custom version for security policy'
type: string
default: ''
policy-version:
description: 'Security policy version'
type: string
default: ''
workflow_call:
inputs:
tag-name:
description: 'Tag name that triggered the security policy update'
type: string
required: false
default: ''
force-update:
description: 'Force security policy update even without changes'
type: boolean
required: false
default: false
policy-version:
description: 'Security policy version'
type: string
required: false
default: ''
permissions:
contents: write
pull-requests: write
jobs:
security-management:
name: Security Management
uses: bauer-group/automation-templates/.github/workflows/security-management.yml@main
with:
tag-name: ${{ inputs.tag-name }}
force-update: ${{ inputs.force-update }}
custom-version: ${{ inputs.custom-version }}

Check failure on line 58 in .github/workflows/security.yml

View workflow run for this annotation

GitHub Actions / 🔒 Security Management

Invalid workflow file

The workflow is not valid. .github/workflows/security.yml (Line: 58, Col: 23): Invalid input, custom-version is not defined in the referenced workflow.
policy-version: ${{ inputs.policy-version }}
secrets: inherit