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 2f0db2e commit a9690c7Copy full SHA for a9690c7
.github/workflows/validate_and_fix_notebook.yml
@@ -52,6 +52,9 @@ jobs:
52
53
- name: Commit changes
54
run: |
55
+ git fetch origin
56
+ git checkout -b ${{ github.event.pull_request.head.ref }} origin/${{ github.event.pull_request.head.ref }}
57
git add -A
58
git commit -m "Fix notebook format issues" || echo "No changes to commit"
59
+ git pull --rebase origin ${{ github.event.pull_request.head.ref }} || echo "No rebase needed"
60
git push origin HEAD:${{ github.event.pull_request.head.ref }}
0 commit comments