From 1dfbddab9265d219945c4cf65ef16da76b48791a Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 2 Aug 2026 21:36:48 +1000 Subject: [PATCH] Add vault-plugin-secrets-apptoken repository Provision the Gitea repo for a generic app-token Vault/OpenBao secrets engine that issues short-lived signed JWTs for self-made services, replacing per-app static bearer Secrets. Mirrors the existing plugin repo entries (squash-only, main branch protection, PR CI checks). Claude-Session: https://claude.ai/code/session_01JUoARVdmhxKQHyyyp1pxeT --- .../vault-plugin-secrets-apptoken.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 config/git.unkin.net/unkin/repository/vault-plugin-secrets-apptoken.yaml diff --git a/config/git.unkin.net/unkin/repository/vault-plugin-secrets-apptoken.yaml b/config/git.unkin.net/unkin/repository/vault-plugin-secrets-apptoken.yaml new file mode 100644 index 0000000..a02b0ac --- /dev/null +++ b/config/git.unkin.net/unkin/repository/vault-plugin-secrets-apptoken.yaml @@ -0,0 +1,19 @@ +description: "HashiCorp Vault / OpenBao secrets engine issuing short-lived signed JWT app tokens (per-app roles, offline JWKS validation) for self-made services" +private: false +default_branch: "main" +default_delete_branch_after_merge: true +# Squash-only: the gitea provider has no "default merge style", so we restrict +# the allowed styles to squash to force it. +allow_merge_commits: false +allow_rebase: false +allow_rebase_explicit: false +allow_squash_merge: true +branch_protection: + - rule_name: "main" + enable_push: false + status_check_contexts: + - "ci/woodpecker/pr/pre-commit" + - "ci/woodpecker/pr/build" + - "ci/woodpecker/pr/test" + approval_whitelist_teams: + - "Owners"