bugfix/remove_anvill_costcap #74

Merged
Steev merged 33 commits from bugfix/remove_anvill_costcap into main 2025-12-02 21:16:39 +01:00
Showing only changes of commit f855c43364 - Show all commits

View File

@@ -14,7 +14,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # Um sicherzustellen, dass alle Branches und Tags abgerufen werden
fetch-depth: 0 # Vollständiges Repository abrufen
# Java 17 installieren
- name: Set up Java 17
@@ -44,9 +44,6 @@ jobs:
- name: Get PR Commit Messages
id: pr_commits
run: |
# Hole alle Remote-Branches
git fetch --prune --unshallow
# PR-Commits abrufen: Der Basis-Branch der PR ist `github.event.pull_request.base.ref`
PR_COMMITS=$(git log --format=%s ${{ github.event.pull_request.base.ref }}..${{ github.sha }} --oneline)