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 f981dcc commit b73cfc9Copy full SHA for b73cfc9
.github/workflows/coverage.yml
@@ -43,8 +43,10 @@ jobs:
43
run: |
44
git config --global user.name "github-actions[bot]"
45
git config --global user.email "github-actions[bot]@users.noreply.github.com"
46
- git checkout -b py-code-coverage || git checkout py-code-coverage
47
- git pull origin py-code-coverage
48
git add .
49
- git commit -m "Update coverage badge"
50
- git push --force origin py-code-coverage
+ git status
+ git commit --verbose -m "Update coverage badge"
+ git fetch origin
51
+ git rebase --strategy-option=theirs origin/py-code-coverage --verbose
52
+ git push --verbose origin py-code-coverage
0 commit comments