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 2db7cb1 commit b4f2594Copy full SHA for b4f2594
.github/workflows/auto-update-app-headers.yml
@@ -6,7 +6,7 @@ on:
6
- main
7
paths:
8
- 'ct/**.sh'
9
- workflow_dispatch: # Ermöglicht das manuelle Ausführen der Action
+ workflow_dispatch:
10
11
jobs:
12
update-app-files:
@@ -47,11 +47,14 @@ jobs:
47
- name: Check if there are any changes
48
id: verify-diff
49
run: |
50
+ echo "Checking for changes..."
51
+ git status
52
if git diff --quiet; then
53
echo "No changes detected."
54
echo "changed=false" >> $GITHUB_OUTPUT
55
else
- echo "Changes detected."
56
+ echo "Changes detected:"
57
+ git diff --stat
58
echo "changed=true" >> $GITHUB_OUTPUT
59
fi
60
@@ -76,3 +79,4 @@ jobs:
76
79
- name: No changes detected
77
80
if: steps.verify-diff.outputs.changed == 'false'
78
81
run: echo "No changes to commit. Workflow completed successfully."
82
+
0 commit comments