From 0abaa35598390dd2061a5b94a0c09be5b68a6ded Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Wed, 12 May 2021 16:32:42 -0400 Subject: [PATCH] ci: add more prefixes for release-please More subcommands of node-gyp, and more OSes. Also add documentation comments in the .yml file explaining the categories and order of the prefix entries. --- .github/workflows/release-please.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index fe14c7510c..77d7ac2f31 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -23,11 +23,20 @@ jobs: {"type":"src","section":"Core","hidden":false}, {"type":"test","section":"Tests","hidden":false}, {"type":"build","section":"Core","hidden":false}, + {"type":"clean","section":"Core","hidden":false}, {"type":"configure","section":"Core","hidden":false}, {"type":"install","section":"Core","hidden":false}, + {"type":"list","section":"Core","hidden":false}, + {"type":"rebuild","section":"Core","hidden":false}, + {"type":"remove","section":"Core","hidden":false}, {"type":"deps","section":"Core","hidden":false}, {"type":"python","section":"Core","hidden":false}, + {"type":"lin","section":"Core","hidden":false}, + {"type":"linux","section":"Core","hidden":false}, + {"type":"mac","section":"Core","hidden":false}, + {"type":"macos","section":"Core","hidden":false}, {"type":"win","section":"Core","hidden":false}, + {"type":"windows","section":"Core","hidden":false}, {"type":"zos","section":"Core","hidden":false}, {"type":"doc","section":"Doc","hidden":false}, {"type":"docs","section":"Doc","hidden":false}, @@ -36,3 +45,12 @@ jobs: {"type":"refactor","section":"Miscellaneous","hidden":false}, {"type":"ci","section":"Miscellaneous","hidden":false}, {"type":"meta","section":"Miscellaneous","hidden":false}] + + # Standard Conventional Commits: `feat` and `fix` + # node-gyp subdirectories: `bin`, `gyp`, `lib`, `src`, `test` + # node-gyp subcommands: `build`, `clean`, `configure`, `install`, `list`, `rebuild`, `remove` + # Core abstract category: `deps` + # Languages/platforms: `python`, `lin`, `linux`, `mac`, `macos`, `win`, `window`, `zos` + # Documentation: `doc`, `docs`, `readme` + # Standard Conventional Commits: `chore` (under "Miscellaneous") + # Miscellaneous abstract categories: `refactor`, `ci`, `meta`