Skip to content

Commit fe31dc4

Browse files
authored
testing pipeline
1 parent b6bfe5c commit fe31dc4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/validate_and_fix_markdown.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ jobs:
3535
git config --global user.name "github-actions[bot]"
3636
3737
- name: Commit changes
38-
run: |
38+
run: |
39+
git fetch origin
40+
git checkout ${{ github.event.pull_request.head.ref }}
41+
git rebase origin/${{ github.event.pull_request.head.ref }}
3942
git add -A
4043
git commit -m "Fix Markdown syntax issues" || echo "No changes to commit"
4144
git push origin HEAD:${{ github.event.pull_request.head.ref }}

0 commit comments

Comments
 (0)