chan icon indicating copy to clipboard operation
chan copied to clipboard

Support for Gitlab Release

Open EmilienLeroy opened this issue 3 years ago • 1 comments

Hi,

I use chan for lot of projects on github and it's work perfectly ! But I have some other projects on gitlab and currenctly I can't directly create release on it using chan. This feature is already planned ? Else I think it can be very cool to have a gitlab-release command.

EmilienLeroy avatar Sep 19 '22 07:09 EmilienLeroy

You can specify a .chanrc in the root of your project like this:

{
    "allow-prerelease": true,
    "merge-prerelease": true,
    "git-branch": "main",
    "git-release-template": "https://gitlab.com/your/project/tags/[next]",
    "git-template": "https://gitlab.com/your/project/compare/[prev]...[next]"
}

JacobDB avatar Dec 27 '23 18:12 JacobDB