Release (#440)
* Feat: Enable sorting discussions by original comment (#422) * Feat: Improve popup UX (#426) * Feat: Automatically update MR summary details (#427) * Feat: Show update progress in winbar (#432) * Feat: Abbreviate winbar (#439) * Fix: Note Creation Bug (#441) * Fix: Checking whether comment can be created (#434) * Fix: Syntax in discussion tree (#433) * fix: improve indication of resolved threads and drafts (#442) * Docs: Various minor improvements (#445) --------- Co-authored-by: Jakub F. Bortlík <jakub.bortlik@proton.me>
This commit is contained in:
committed by
GitHub
parent
be027331e1
commit
495e64c8bc
2
.github/CONTRIBUTING.md
vendored
2
.github/CONTRIBUTING.md
vendored
@@ -6,7 +6,7 @@ Thank you for taking time to contribute to this plugin! Please follow these step
|
||||
|
||||
It's possible that the feature you want is already implemented, or does not belong in `gitlab.nvim` at all. By creating an issue first you can have a conversation with the maintainers about the functionality first. While this is not strictly necessary, it greatly increases the likelihood that your merge request will be accepted.
|
||||
|
||||
2. Fork the repository, and create a new feature branch for your desired functionality. Make your changes.
|
||||
2. Fork the repository, and create a new feature branch off the `develop` branch for your desired functionality. Make your changes.
|
||||
|
||||
If you are using Lazy as a plugin manager, the easiest way to work on changes is by setting a specific path for the plugin that points to your repository locally. This is what I do:
|
||||
|
||||
|
||||
4
.github/workflows/go.yaml
vendored
4
.github/workflows/go.yaml
vendored
@@ -4,6 +4,10 @@ on:
|
||||
branches:
|
||||
- main
|
||||
- develop
|
||||
paths:
|
||||
- 'cmd/**' # Ignore changes to the Lua code
|
||||
- 'go.sum'
|
||||
- 'go.mod'
|
||||
jobs:
|
||||
go_lint:
|
||||
name: Lint Go 💅
|
||||
|
||||
2
.github/workflows/lua.yaml
vendored
2
.github/workflows/lua.yaml
vendored
@@ -4,6 +4,8 @@ on:
|
||||
branches:
|
||||
- main
|
||||
- develop
|
||||
paths:
|
||||
- 'lua/**' # Ignore changes to the Go code
|
||||
jobs:
|
||||
lua_lint:
|
||||
name: Lint Lua 💅
|
||||
|
||||
Reference in New Issue
Block a user