Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/sync-git-bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ jobs:
# Fetch git-bug refs so we can push incremental updates
fetch-depth: 0

- name: Configure git
run: |
# Required by git-bug to have those set, otherwise would not work!
git config --global user.name "github-actions"
git config --global user.email "github-actions@users.noreply.github.com"


- name: Fetch existing bug refs
run: |
git fetch origin 'refs/bugs/*:refs/bugs/*' || true
Expand Down
Loading