diff --git a/.github/maintainers_guide.md b/.github/maintainers_guide.md index 7ce7423..ef6b98d 100644 --- a/.github/maintainers_guide.md +++ b/.github/maintainers_guide.md @@ -110,8 +110,16 @@ Patch and minor updates are auto-approved and auto-merged via the checking whether the relevant live `docs.slack.dev` page has changed. - Feature requests for new skills should be discussed in the issue before implementation begins. -- Labels: `bug` for confirmed issues, `enhancement` for feature requests, - `build` for CI/tooling changes. +- Labels: + - `bug` — confirmed defects + - `enhancement` — feature requests and new functionality + - `docs` — documentation-only changes + - `test` — test-only changes + - `build` — CI, GitHub Actions, and build/compilation processes + - `chore` — repo structure, required files, release scaffolding, general maintenance + - `dependencies` — dependency updates (Dependabot applies this automatically) + - `security` — vulnerability fixes, hardening, and security audit findings + (apply alongside `bug`/`build`/`dependencies` as appropriate) --- diff --git a/.github/release.yml b/.github/release.yml index b2574b7..c9fc4cc 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -13,9 +13,15 @@ changelog: - title: 🤖 Build labels: - build - - title: 🧪 Testing/Code Health + - title: 🧪 Tests labels: - - code health + - test + - title: 🧹 Chores + labels: + - chore + - title: ⬆️ Dependencies + labels: + - dependencies - title: 🔒 Security labels: - security