Skip to content

Commit 017b2b2

Browse files
Merge pull request #1813 from dandi/enh-git-bug
Configure user.* git vars for git-bug
2 parents a0315c1 + ea759a8 commit 017b2b2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/sync-git-bug.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ jobs:
2020
# Fetch git-bug refs so we can push incremental updates
2121
fetch-depth: 0
2222

23+
- name: Configure git
24+
run: |
25+
# Required by git-bug to have those set, otherwise would not work!
26+
git config --global user.name "github-actions"
27+
git config --global user.email "github-actions@users.noreply.github.com"
28+
29+
2330
- name: Fetch existing bug refs
2431
run: |
2532
git fetch origin 'refs/bugs/*:refs/bugs/*' || true

0 commit comments

Comments
 (0)