From 3c16520b31675a480dd99818f0700fe37a3a7f9a Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Wed, 15 Jul 2026 07:40:22 +1000 Subject: [PATCH] Add vault-plugin-secrets-gpg repository The GPG/OpenPGP secrets engine needs a Gitea repo to hold its source and run its Woodpecker PR/release pipelines. - Add config/git.unkin.net/unkin/repository/vault-plugin-secrets-gpg.yaml (public, main default branch, squash-only, main branch protection gated on the pre-commit/build/test PR checks), mirroring the sibling vault-plugin-secrets-bind-tsig repo. --- .../repository/vault-plugin-secrets-gpg.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 config/git.unkin.net/unkin/repository/vault-plugin-secrets-gpg.yaml diff --git a/config/git.unkin.net/unkin/repository/vault-plugin-secrets-gpg.yaml b/config/git.unkin.net/unkin/repository/vault-plugin-secrets-gpg.yaml new file mode 100644 index 0000000..1de8764 --- /dev/null +++ b/config/git.unkin.net/unkin/repository/vault-plugin-secrets-gpg.yaml @@ -0,0 +1,19 @@ +description: "HashiCorp Vault / OpenBao secrets engine for GPG/OpenPGP keys (sign/verify/encrypt/decrypt, transit-style versioned keys, pass-compatible)" +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"