Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
80867f6
entities/common: add Type enum; promote Status to 4-state
gilescope Apr 17, 2026
15b063e
entities/bug: extend Bug with PR shape and three PR-only ops
gilescope Apr 17, 2026
c4ac2a6
cache: excerpt and matcher learn about Kind and PR fields
gilescope Apr 17, 2026
ef00943
query: parse kind: / type: filters and the new status values
gilescope Apr 17, 2026
849c150
common,bug,cache,query,api: rename common.Type to common.Kind
gilescope Apr 17, 2026
6c16f88
api/graphql: expose PR fields, ops, reviews and the new status values
gilescope Apr 17, 2026
05b9a90
commands/bug: --pr on new; status merge and status ready subcommands
gilescope Apr 17, 2026
8536551
bridge/github: import pull-requests as Kind=PR bugs
gilescope Apr 17, 2026
8a6129f
doc: mark PR support as partial in the feature matrix
gilescope Apr 17, 2026
973d7c0
bridge/github,cache,core: import PR reviews and review comments
gilescope Apr 17, 2026
692b720
doc: reflect review / review comment import in feature matrix
gilescope Apr 17, 2026
a3f2aad
bridge/github: paginate review comments past the inline batch
gilescope Apr 17, 2026
dfb8f1a
doc: review comments are now fully imported
gilescope Apr 17, 2026
ecfe5a8
webui: PR-specific chrome in bug list and detail pages
gilescope Apr 17, 2026
f79aa89
bridge/github: export updates to already-imported pull-requests
gilescope Apr 17, 2026
b44eaf1
bridge/github: export-create for pull-requests
gilescope Apr 17, 2026
8641b30
commands,cache,bridge: author PR reviews locally and export them
gilescope Apr 17, 2026
0126ede
doc: review authoring via CLI and export now supported
gilescope Apr 17, 2026
5bdbdfa
doc: regenerate man pages for new PR commands; add local markdownlint…
gilescope Apr 17, 2026
3b574e7
api,webui: expose originUrl on Bug; show upstream #NNN linked to GitHub
gilescope Apr 17, 2026
61beed3
commands,api,webui: multi-repo webui via --repo and --root + bleve mi…
gilescope Apr 17, 2026
b135498
webui,query: cross-repo search via fan-out + repo:/org: query filters
gilescope Apr 18, 2026
06d216b
webui,api/http: add Sync button that re-pulls every registered repo
gilescope Apr 18, 2026
c929552
feat: PR support ( + dir of repo's checkouts support)
gilescope Apr 22, 2026
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
25 changes: 25 additions & 0 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// Inherit rules from the user's global config when present (key names here
// override for this repository). The `doc/md/` directory is populated by
// the cobra documentation generator (`go generate`), which emits tabs in
// "SEE ALSO" tables and fenced code blocks without a language — neither
// is something we want to hand-edit every time docs regenerate.
"config": {
"MD013": false, // allow long lines
"MD033": false, // allow inline HTML
"MD041": false, // allow files without top-level heading
"MD034": false, // allow bare URLs
"MD018": false // we use tags with no space before hash for changelog.
},
"overrides": [
{
"files": ["doc/md/**/*.md"],
"config": {
// Cobra-generated markdown. See comment above.
"MD010": false, // hard tabs in SEE ALSO tables
"MD040": false, // fenced code blocks without language
"MD012": false // double blank lines occasionally emitted
}
}
]
}
4 changes: 4 additions & 0 deletions api/graphql/gqlgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ models:
model: github.com/git-bug/git-bug/api/graphql/models.IdentityWrapper
Bug:
model: github.com/git-bug/git-bug/api/graphql/models.BugWrapper
BugKind:
model: github.com/git-bug/git-bug/entities/common.Kind
ReviewState:
model: github.com/git-bug/git-bug/entities/bug.ReviewState
Loading