We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23d3cd0 commit a55b810Copy full SHA for a55b810
.github/workflows/tf-autosquash.yml
@@ -90,7 +90,10 @@ jobs:
90
git fetch origin
91
echo "Base ref commit:"
92
git log -1 --oneline "origin/$BASE_REF"
93
- git rebase -i --autosquash "origin/$BASE_REF"
+ BASE_COMMIT=$(git rev-parse "origin/$BASE_REF")
94
+ echo "Base commit: $BASE_COMMIT"
95
+ # git rebase -i --autosquash "origin/$BASE_REF"
96
+ git rebase -i --autosquash $BASE_COMMIT
97
98
- name: Push changes
99
run: |
0 commit comments