From e29967db05587457b7deec2244bccafe6a488eed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Wed, 25 Feb 2026 13:53:24 -0800 Subject: [PATCH] chore: add .github/ config files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add standard org GitHub configuration: - dependabot.yml for GitHub Actions updates - labeler.yml for PR auto-labeling - delete-merged-branch-config.yml for branch cleanup 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/delete-merged-branch-config.yml | 4 ++++ .github/dependabot.yml | 9 +++++++++ .github/labeler.yml | 21 +++++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 .github/delete-merged-branch-config.yml create mode 100644 .github/dependabot.yml create mode 100644 .github/labeler.yml diff --git a/.github/delete-merged-branch-config.yml b/.github/delete-merged-branch-config.yml new file mode 100644 index 0000000..043086a --- /dev/null +++ b/.github/delete-merged-branch-config.yml @@ -0,0 +1,4 @@ +--- +exclude: + - dependabot/* +delete_closed_pr: true diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1cbcab7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +--- +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: chore diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..b45fe7b --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,21 @@ +--- +github/action: + - changed-files: + - any-glob-to-any-file: ".github/**/*.yml" + +kind/bats: + - changed-files: + - any-glob-to-any-file: "bats.yml" + +kind/docs: + - changed-files: + - any-glob-to-any-file: "docs.yml" + +kind/go: + - changed-files: + - any-glob-to-any-file: "go.yml" + +kind/yaml: + - changed-files: + - any-glob-to-any-file: "**/*.yaml" + - any-glob-to-any-file: "**/*.yml"