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 9e80383 commit 51bb65eCopy full SHA for 51bb65e
.github/workflows/update-md-date.yml
@@ -47,12 +47,12 @@ jobs:
47
# Ensure we're on the correct branch
48
git switch -c "$PR_BRANCH" || git switch "$PR_BRANCH"
49
50
- # Stage and commit changes if any
+ # Stage and commit all changes (new, modified, deleted)
51
git add -A
52
git diff --staged --quiet || git commit -m "Update last modified date in Markdown files"
53
54
- # Pull and merge existing changes
+ # Pull and merge existing changes from remote
55
git pull origin "$PR_BRANCH" --no-rebase
56
57
- # Push all changes
+ # Push all changes to the PR branch
58
git push origin "$PR_BRANCH"
0 commit comments