diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-12-20 17:25:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 17:25:33 +0100 |
commit | 9e8bcb16ad67e1339d51bacbe715121dbefcbcbb (patch) | |
tree | 62b76f66a37c70c64bac0928f40c99d23f9aa5d9 /src-tauri/src | |
parent | 1e890e268bb0e501e55464e74b4042f8b6ec352d (diff) | |
download | FlightCore-9e8bcb16ad67e1339d51bacbe715121dbefcbcbb.tar.gz FlightCore-9e8bcb16ad67e1339d51bacbe715121dbefcbcbb.zip |
feat: Add `ci:` as a valid tag in release note generator (#711)
Diffstat (limited to 'src-tauri/src')
-rw-r--r-- | src-tauri/src/github/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-tauri/src/github/mod.rs b/src-tauri/src/github/mod.rs index 0174084f..343d041a 100644 --- a/src-tauri/src/github/mod.rs +++ b/src-tauri/src/github/mod.rs @@ -163,6 +163,7 @@ fn generate_flightcore_release_notes(commits: Vec<String>) -> String { "style" => "**Code style changes:**", "refactor" => "**Code Refactoring:**", "build" => "**Build:**", + "ci" => "**Continuous integration changes:**", "test" => "**Tests:**", "chore" => "**Chores:**", "i18n" => "**Translations:**", |