We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab5485 commit 78ed820Copy full SHA for 78ed820
.github/workflows/auto-update-app-headers.yml
@@ -30,6 +30,7 @@ jobs:
30
git checkout main
31
git pull origin main
32
BRANCH_NAME="update-app-headers-$(date +'%Y-%m-%d-%H-%M-%S')"
33
+ echo "Branch name: $BRANCH_NAME" # Debugging
34
git checkout -b "$BRANCH_NAME"
35
echo "Created and switched to branch $BRANCH_NAME"
36
@@ -47,6 +48,7 @@ jobs:
47
48
# Step 5: Push changes to the new branch
49
- name: Push changes to the new branch
50
run: |
51
+ echo "Pushing changes to branch $BRANCH_NAME" # Debugging
52
git add ./misc/.app-headers
53
git commit -m "Update .app-headers file"
54
git push origin "$BRANCH_NAME"
0 commit comments