diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-12-22 19:47:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 19:47:46 +0100 |
commit | 37af27e6657feef928e811f752c3663133fad221 (patch) | |
tree | 2f1aa53bba5862c2ed60043c81fa4ff699ba6a88 | |
parent | 2c1a090b17c126ae39413b4d5b2fb0f9f609486c (diff) | |
download | FlightCore-37af27e6657feef928e811f752c3663133fad221.tar.gz FlightCore-37af27e6657feef928e811f752c3663133fad221.zip |
fix: Add missing release note generation section entry (#719)
-rw-r--r-- | src-tauri/src/constants.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-tauri/src/constants.rs b/src-tauri/src/constants.rs index 7ee98f95..1f6a0a25 100644 --- a/src-tauri/src/constants.rs +++ b/src-tauri/src/constants.rs @@ -30,8 +30,8 @@ pub const BLACKLISTED_MODS: [&str; 3] = [ pub const TITANFALL2_STEAM_ID: &str = "1237970"; /// Order in which the sections for release notes should be displayed -pub const SECTION_ORDER: [&str; 10] = [ - "feat", "fix", "docs", "style", "refactor", "build", "test", "i18n", "chore", "other", +pub const SECTION_ORDER: [&str; 11] = [ + "feat", "fix", "docs", "style", "refactor", "build", "test", "i18n", "ci", "chore", "other", ]; /// GitHub API endpoints for launcher/mods PRs |