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 190d831 commit b93bedeCopy full SHA for b93bede
.github/workflows/update-leetcode-grid.yml
@@ -36,6 +36,11 @@ jobs:
36
run: |
37
git config --local user.name "github-actions[bot]"
38
git config --local user.email "github-actions[bot]@users.noreply.github.com"
39
+
40
git add README.md Site_README.md
41
git diff-index --quiet HEAD || git commit -m "[Auto] Update LeetCode README table"
- git push
42
43
+ git fetch origin ${{ github.ref_name }}
44
+ git rebase origin/${{ github.ref_name }}
45
46
+ git push origin HEAD:${{ github.ref_name }}
0 commit comments