From 24a8dd51945c6b10c714111ac2480bdae113f8a8 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Thu, 11 Jun 2026 22:31:41 +1000 Subject: [PATCH] Add forgebot and forgebot-skills repos with branch protection - forgebot: branch protection on main with pre-commit, test, build CI checks - forgebot-skills: branch protection on main with validate CI check - Both repos enabled for Woodpecker CI --- .../unkin/repository/forgebot-skills.yaml | 13 +++++++++++++ .../git.unkin.net/unkin/repository/forgebot.yaml | 15 +++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 config/git.unkin.net/unkin/repository/forgebot-skills.yaml create mode 100644 config/git.unkin.net/unkin/repository/forgebot.yaml diff --git a/config/git.unkin.net/unkin/repository/forgebot-skills.yaml b/config/git.unkin.net/unkin/repository/forgebot-skills.yaml new file mode 100644 index 0000000..16b9ac7 --- /dev/null +++ b/config/git.unkin.net/unkin/repository/forgebot-skills.yaml @@ -0,0 +1,13 @@ +description: "Skill definitions for forgebot agents" +private: false +default_branch: "main" +default_delete_branch_after_merge: true +default_merge_style: "squash" +branch_protection: + - rule_name: "main" + enable_push: false + status_check_contexts: + - "ci/woodpecker/pr/validate" + approval_whitelist_users: + - "unkinben" +woodpecker: true diff --git a/config/git.unkin.net/unkin/repository/forgebot.yaml b/config/git.unkin.net/unkin/repository/forgebot.yaml new file mode 100644 index 0000000..a31d8d1 --- /dev/null +++ b/config/git.unkin.net/unkin/repository/forgebot.yaml @@ -0,0 +1,15 @@ +description: "K8s operator + API for AI agent dispatch from git forges" +private: false +default_branch: "main" +default_delete_branch_after_merge: true +default_merge_style: "squash" +branch_protection: + - rule_name: "main" + enable_push: false + status_check_contexts: + - "ci/woodpecker/pr/pre-commit" + - "ci/woodpecker/pr/test" + - "ci/woodpecker/pr/build" + approval_whitelist_users: + - "unkinben" +woodpecker: true