From 78ed820bb00f928f98037f4cda40f7514d3db125 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 14 Jan 2025 14:54:00 +0100 Subject: [PATCH] Update auto-update-app-headers.yml --- .github/workflows/auto-update-app-headers.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index 5993efc3..01d1de36 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -30,6 +30,7 @@ jobs: git checkout main git pull origin main BRANCH_NAME="update-app-headers-$(date +'%Y-%m-%d-%H-%M-%S')" + echo "Branch name: $BRANCH_NAME" # Debugging git checkout -b "$BRANCH_NAME" echo "Created and switched to branch $BRANCH_NAME" @@ -47,6 +48,7 @@ jobs: # Step 5: Push changes to the new branch - name: Push changes to the new branch run: | + echo "Pushing changes to branch $BRANCH_NAME" # Debugging git add ./misc/.app-headers git commit -m "Update .app-headers file" git push origin "$BRANCH_NAME"