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 d35efd8 commit 04a2c60Copy full SHA for 04a2c60
.github/workflows/ci-cd.yml
@@ -31,7 +31,11 @@ jobs:
31
- name: Unset header
32
# checkout@v2 adds a header that makes branch protection report errors
33
# because the Github action bot is not a collaborator on the repo
34
- run: git config --local --unset http.https://github.com/.extraheader
+ run: |
35
+ git config --local --unset http.https://github.com/.extraheader
36
+ git config --global init.defaultBranch main
37
+ git config --global user.email "[email protected]"
38
+ git config --global user.name "Dummy User"
39
40
- name: Fetch tags
41
run: git fetch --prune --unshallow
0 commit comments