Skip to content

Commit ea759a8

Browse files
committed
Configure user.* git vars for git-bug
We are getting Error: no config entry for the given key: missing key user.name see https://github.com/dandi/dandi-cli/actions/runs/22418696352/job/64910947697
1 parent a0315c1 commit ea759a8

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)