new Workflow

This commit is contained in:
Michel Roegl-Brunner 2025-03-13 11:46:10 +01:00
parent 955f510f7b
commit 064f2faf20

View File

@ -14,9 +14,9 @@ jobs:
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Issue Title - name: Extract Issue Title (Lowercase & Underscores)
id: extract_title id: extract_title
run: echo "TITLE=$(echo '${{ github.event.issue.title }}' | sed 's/ /_/g')" >> $GITHUB_ENV run: echo "TITLE=$(echo '${{ github.event.issue.title }}' | tr '[:upper:]' '[:lower:]' | sed 's/ /_/g')" >> $GITHUB_ENV
- name: Check if Files Exist in community-scripts/ProxmoxVE - name: Check if Files Exist in community-scripts/ProxmoxVE
id: check_files id: check_files