Quellcode durchsuchen

ci: tweak git-cliff's settings to ignore chores

kylo252 vor 3 Jahren
Ursprung
Commit
b09ada8940
3 geänderte Dateien mit 14 neuen und 16 gelöschten Zeilen
  1. 6 6
      .github/workflows/cliff.toml
  2. 6 1
      .github/workflows/commitlint.yml
  3. 2 9
      CHANGELOG.md

+ 6 - 6
.github/workflows/cliff.toml

@@ -55,12 +55,12 @@ commit_parsers = [
     { message = "^feat", group = "<!-- 1 --> Features"},
     { message = "(^bug|^Bug|^fix)", group = "<!-- 2 --> Bugfix"},
     { message = "^refactor", group = "<!-- 3 --> Refactor"},
-    { message = "^chore", group = "<!-- 4 --> Miscellaneous Tasks"},
-    { message = "^doc", group = "<!-- 5 --> Documentation"},
-    { message = "^revert", group = "<!-- 6 --> Revert"},
-    { message = "^perf", group = "<!-- 7 --> Performance"},
-    { message = "^test", group = "<!-- 8 --> Testing"},
-    { message = "^ci", group = "CI", skip = true},
+    { message = "^doc", group = "<!-- 4 --> Documentation"},
+    { message = "^revert", group = "<!-- 5 --> Revert"},
+    { message = "^perf", group = "<!-- 6 --> Performance"},
+    { message = "^chore", group = "<!-- 7 --> Miscellaneous Tasks", skip = true},
+    { message = "^ci", group = "<!-- 7 --> Miscellaneous Tasks", skip = true},
+    { message = "^test", group = "<!-- 7 --> Miscellaneous Tasks", skip = true},
 ]
 # filter out the commits that are not matched by commit parsers
 filter_commits = false

+ 6 - 1
.github/workflows/commitlint.yml

@@ -1,5 +1,9 @@
 name: "Commit Linter"
-on: pull_request
+on:
+  pull_request:
+    branches:
+      - "rolling"
+
 jobs:
   lint-commits:
     runs-on: ubuntu-latest
@@ -13,3 +17,4 @@ jobs:
         with:
           configFile: .github/workflows/commitlint.config.js
           helpURL: https://github.com/LunarVim/LunarVim/blob/rolling/CONTRIBUTING.md#commit-messages
+          firstParent: true

+ 2 - 9
CHANGELOG.md

@@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file.
 - Full compatibility with neovim v0.6 (#2037)
 - Multiple enhancements to lvim-reload (#2054)
 - Bump plugin versions (#2064)
+- Update lsp-installer and lspconfig hashes to enable solidity_ls language server (#2072)
 
 ### <!-- 2 --> Bugfix
 
@@ -30,6 +31,7 @@ All notable changes to this project will be documented in this file.
 - _(lsp)_ Avoid installing an overridden server (#1981)
 - _(lsp)_ Prevent repeated setup call (#2048)
 - _(lsp)_ Correct client_id parsing in lvim-info (#2071)
+- _(lsp)_ Allow overriding servers with custom providers (#2070)
 - _(lualine)_ Change `fg` of section `a` in onedarker (#1909)
 - _(null-ls)_ Allow the same linter and formatter (#1968)
 - _(nvimtree)_ Update settings (#2001)
@@ -61,13 +63,4 @@ All notable changes to this project will be documented in this file.
 - More configurable format-on-save (#1937)
 - Load the default keymaps once (#1965)
 
-### <!-- 4 --> Miscellaneous Tasks
-
-- _(terminal)_ Avoid problematic layzgit mapping (#2068)
-- Pin cmp related plugins (#1917)
-- Update lsp installer (#1930)
-- Bump core-plugins version (#1989)
-- Bump core-plugins' version (#2018)
-- Bump core-plugins version (#2031)
-
 <!-- generated by git-cliff -->