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 e627c4a commit b5fe42fCopy full SHA for b5fe42f
.github/workflows/generate-template.yaml
@@ -73,12 +73,8 @@ jobs:
73
- name: Commit and push changes
74
id: commit
75
run: |
76
- git fetch origin main
77
- git add -A
78
- echo "=== Git status ==="
79
- git status
80
- echo "=== Differences vs main ==="
81
- if git diff --quiet origin/main; then
+ git add .
+ if git diff --cached --quiet; then
82
echo "no_changes=true" >> $GITHUB_OUTPUT
83
echo "✅ No changes detected."
84
else
0 commit comments