fix(ci): sign docs-regen commits with dedicated bot GPG key #145
No Reviewers
Labels
Clear labels
Area/CI
Area/Completions
Area/Components
Area/Config
Area/Docs
Area/Functions
Area/Integrations
Area/Prompt & Theme
Area/Scripts
Area/Tests
Compat/Breaking
Kind/Bug
Kind/Chore
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Performance
Kind/Refactor
Kind/Security
Kind/Testing
good first issue
help wanted
.github/workflows and repository automation
completions/ - tab-completion scripts
The opinionated-component system (C1-C6)
config.fish and conf.d/ - startup and environment
docs/manual/ and the generated manual, man page, and site
functions/ - user-facing functions and helpers
integrations/ - third-party tool wiring
themes/ and prompt appearance
scripts/ - standalone helper scripts
tests/ - the syntax lint and functional suite
Breaking change that won't be backward compatible
Something is not working
Tooling, dependencies, and housekeeping
Documentation changes
Improve existing functionality
New functionality
Makes existing behavior faster or lighter
Restructures code without changing behavior
This is security issue
Issue or pull request related to testing
Well-scoped and self-contained; a good place to start
Maintainer is looking for someone to pick this up
Priority
Critical
1
The priority is critical
Priority
High
2
The priority is high
Priority
Medium
3
The priority is medium
Priority
Low
4
The priority is low
Reviewed
Confirmed
1
Issue has been confirmed
Reviewed
Duplicate
2
This issue or pull request already exists
Reviewed
Invalid
3
Invalid issue
Reviewed
Won't Fix
3
This issue won't be fixed
Status
Blocked
1
Something is blocking this issue or pull request
Status
Need More Info
2
Feedback is required to reproduce issue or to continue work
Status
Abandoned
3
Somebody has started to work on this but abandoned work
Milestone
No items
No Milestone
Projects
Clear projects
No projects
Assignees
rootiest (Rootiest)
Clear assignees
No Assignees
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: rootiest/fish-config#145
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Problem
CI docs-regen commits (
chore(docs): regenerate manual...) never showed assigned/verified on Gitea, even though
[repository.signing]in app.ini hada valid key. Root cause: that commit is created client-side in the Actions
runner (
git commit && git push), and Gitea only signs commits it generatesitself internally (merge button, web editor, wiki) — it never signs a commit
a client pushes to it, regardless of server config.
Separately, the previous commit author
Gitea Actions <actions@gitea>wasnever a verified email on any Gitea account, so even a valid signature
wouldn't have resolved to a "Verified" badge.
Fix
fishconfig-bot(verified emailfishconfig-bot@git.rootiest.dev, no login) owns a fresh passphrase-lessed25519 GPG key (
0603CD87750C18FB3604147EFD08763FA41E5534).CI_GPG_PRIVATE_KEYrepo secret.GNUPGHOME, sets
user.signingkey/commit.gpgsign, and commits as thebot identity.
Verified end-to-end against a disposable scratch repo before wiring this in
(bot-signed push →
verified: true,reason: "fishconfig-bot / FD08763FA41E5534"via the commit verification API); scratch repo deletedafter.
Separate, not included here
[repository.signing]in app.ini (INITIAL_COMMIT/CRUD_ACTIONS/MERGES/WIKI_SIG) is stillneveracross the board — that governs Gitea's owninternally-generated commits (PR merge button, web editor, wiki), unrelated
to this fix. The server's own signing key at
/data/git/.gnupgwasconfirmed present and correctly owned; only the
nevertriggers areblocking it. Flip those to
always(or another trust level) and restartthe
giteacontainer separately, whenever wanted.