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 b6bfe5c commit fe31dc4Copy full SHA for fe31dc4
.github/workflows/validate_and_fix_markdown.yml
@@ -35,7 +35,10 @@ jobs:
35
git config --global user.name "github-actions[bot]"
36
37
- name: Commit changes
38
- run: |
+ run: |
39
+ git fetch origin
40
+ git checkout ${{ github.event.pull_request.head.ref }}
41
+ git rebase origin/${{ github.event.pull_request.head.ref }}
42
git add -A
43
git commit -m "Fix Markdown syntax issues" || echo "No changes to commit"
44
git push origin HEAD:${{ github.event.pull_request.head.ref }}
0 commit comments