Skip to content

Commit 4ce7b3c

Browse files
authored
ci(workflows): add release-please
ci(workflows): add release-please
2 parents cc1e2c2 + 0205a2f commit 4ce7b3c

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

.github/workflows/release-please.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Release Please
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: google-github-actions/release-please-action@v3
17+
with:
18+
release-type: simple
19+
package-name: jellybeans.nvim
20+
version-file: "lua/jellybeans/init.lua"
21+
extra-files: |
22+
lua/jellybeans/init.lua
23+
bump-minor-pre-major: true
24+
bump-patch-for-minor-pre-major: true
25+
include-v-in-tag: true
26+
changelog-types: |
27+
[
28+
{"type": "feat", "section": "Features", "hidden": false},
29+
{"type": "fix", "section": "Bug Fixes", "hidden": false},
30+
{"type": "perf", "section": "Performance Improvements", "hidden": false},
31+
{"type": "refactor", "section": "Code Refactoring", "hidden": false},
32+
{"type": "style", "section": "Styles", "hidden": false},
33+
{"type": "docs", "section": "Documentation", "hidden": false},
34+
{"type": "chore", "section": "Miscellaneous", "hidden": false},
35+
{"type": "test", "section": "Tests", "hidden": true},
36+
{"type": "build", "section": "Build System", "hidden": true},
37+
{"type": "ci", "section": "Continuous Integration", "hidden": true}
38+
]
39+
signoff: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
A port of the jellybeans colorscheme for Neovim, written in Lua.
44

5-
**Note:** This colorscheme is very much a work in progress so breaking changes should be expected. If you find any issues, please report them. I don't have a lot of experience with colorschemes so pull requests are welcome.
6-
75
![jellybeans](./images/theme.png)
86
![jellybeans](./images/theme_light.png)
97

lua/jellybeans/init.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
local M = {}
22

3+
M.version = "1.0.0" -- {x-release-please-version}
4+
35
local is_loading = false
46

57
---@param opts? jellybeans.Config

0 commit comments

Comments
 (0)