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 b97c4df commit 3d8aee5Copy full SHA for 3d8aee5
.github/workflows/ci-cd.yaml
@@ -34,6 +34,12 @@ jobs:
34
run:
35
shell: bash -l {0}
36
steps:
37
+ - name: Set Git User
38
+ # checkout@v2 adds a header that makes branch protection report errors
39
+ # because the Github action bot is not a collaborator on the repo
40
+ run: |
41
+ git config --global user.email "auto@github-actions"
42
+ git config --global user.name "GitHub Actions Runner"
43
- name: Install dependencies
44
run: |
45
sudo apt-get update
0 commit comments