Remove sync git bug workflow for now altogether#1814
Merged
yarikoptic-gitmate merged 5 commits intomasterfrom Feb 27, 2026
Merged
Remove sync git bug workflow for now altogether#1814yarikoptic-gitmate merged 5 commits intomasterfrom
yarikoptic-gitmate merged 5 commits intomasterfrom
Conversation
git-bug requires its own identity (not just git config user.*) before bridge configuration can work. Add `git-bug user new` step. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Bug refs reference identity objects stored under refs/identities/*. Without identity refs, git-bug cache build fails with "identity doesn't exist" on every command. Fix by: - Fetching both refs/bugs/* and refs/identities/* from remote - Detecting missing identity refs and wiping orphaned bug refs so that the pull starts fresh (data is re-pulled from GitHub) - Pushing both ref namespaces so subsequent runs can be incremental Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add fork guard so scheduled sync doesn't run in forks - Replace hardcoded dandi/dandi-cli with GITHUB_REPOSITORY_OWNER and GITHUB_REPOSITORY shell parameter expansion Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Adds a workflow_dispatch input "push-to-github" (default: false) that enables pushing locally-created bugs to GitHub Issues. Scheduled runs remain pull-only. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
We should really test it on some smaller dedicated repo fully first. It seems that there are various aspects which are not yet worked out in my understanding of the situation yet
yarikoptic-gitmate
approved these changes
Feb 27, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1814 +/- ##
=======================================
Coverage 75.11% 75.11%
=======================================
Files 84 84
Lines 11925 11925
=======================================
Hits 8958 8958
Misses 2967 2967
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We should really test it on some smaller dedicated repo fully first. It seems that there are various aspects which are not yet worked out in my understanding of the situation yet