mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
build(ci): change GitHub release notes (#3300)
This commit is contained in:
parent
196557a41a
commit
3910e77a7a
3 changed files with 50 additions and 11 deletions
2
.github/workflows/pipeline.yml
vendored
2
.github/workflows/pipeline.yml
vendored
|
@ -24,7 +24,6 @@ jobs:
|
||||||
uses: golangci/golangci-lint-action@v6
|
uses: golangci/golangci-lint-action@v6
|
||||||
with:
|
with:
|
||||||
version: latest
|
version: latest
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
problem-matchers: true
|
problem-matchers: true
|
||||||
args: --timeout 2m
|
args: --timeout 2m
|
||||||
|
|
||||||
|
@ -99,6 +98,7 @@ jobs:
|
||||||
name: js-bundle
|
name: js-bundle
|
||||||
path: ui/build
|
path: ui/build
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
i18n-lint:
|
i18n-lint:
|
||||||
name: Lint i18n files
|
name: Lint i18n files
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -126,9 +126,47 @@ snapshot:
|
||||||
|
|
||||||
release:
|
release:
|
||||||
draft: true
|
draft: true
|
||||||
|
mode: append
|
||||||
|
footer: |
|
||||||
|
**Full Changelog**: https://github.com/navidrome/navidrome/compare/{{ .PreviousTag }}...{{ .Tag }}
|
||||||
|
|
||||||
|
## Helping out
|
||||||
|
|
||||||
|
This release is only possible thanks to the support of some **awesome people**!
|
||||||
|
|
||||||
|
Want to be one of them?
|
||||||
|
You can [sponsor](https://github.com/sponsors/deluan), pay me a [Ko-fi](https://ko-fi.com/deluan) or [contribute with code](https://www.navidrome.org/docs/developers/).
|
||||||
|
|
||||||
|
## Where to go next?
|
||||||
|
|
||||||
|
* Read installation instructions on our [website](https://www.navidrome.org/docs/installation/).
|
||||||
|
* Reach out on [Discord](https://discord.gg/xh7j7yF), [Reddit](https://www.reddit.com/r/navidrome/) and [Twitter](https://twitter.com/navidrome)!
|
||||||
|
|
||||||
changelog:
|
changelog:
|
||||||
# sort: asc
|
sort: asc
|
||||||
|
use: github
|
||||||
filters:
|
filters:
|
||||||
exclude:
|
exclude:
|
||||||
- "^docs:"
|
- "^test:"
|
||||||
|
- Merge pull request
|
||||||
|
- Merge remote-tracking branch
|
||||||
|
- Merge branch
|
||||||
|
- go mod tidy
|
||||||
|
groups:
|
||||||
|
- title: "New Features"
|
||||||
|
regexp: '^.*?feat(\(.+\))??!?:.+$'
|
||||||
|
order: 100
|
||||||
|
- title: "Security updates"
|
||||||
|
regexp: '^.*?sec(\(.+\))??!?:.+$'
|
||||||
|
order: 150
|
||||||
|
- title: "Bug fixes"
|
||||||
|
regexp: '^.*?(fix|refactor)(\(.+\))??!?:.+$'
|
||||||
|
order: 200
|
||||||
|
- title: "Documentation updates"
|
||||||
|
regexp: ^.*?docs?(\(.+\))??!?:.+$
|
||||||
|
order: 400
|
||||||
|
- title: "Build process updates"
|
||||||
|
regexp: ^.*?(build|ci)(\(.+\))??!?:.+$
|
||||||
|
order: 400
|
||||||
|
- title: Other work
|
||||||
|
order: 9999
|
||||||
|
|
|
@ -48,14 +48,15 @@ This improves the readability of the messages
|
||||||
It can be one of the following:
|
It can be one of the following:
|
||||||
1. **feat**: Addition of a new feature
|
1. **feat**: Addition of a new feature
|
||||||
2. **fix**: Bug fix
|
2. **fix**: Bug fix
|
||||||
3. **docs**: Documentation Changes
|
3. **sec**: Fixing security issues
|
||||||
4. **style**: Changes to styling
|
4. **docs**: Documentation Changes
|
||||||
5. **refactor**: Refactoring of code
|
5. **style**: Changes to styling
|
||||||
6. **perf**: Code that affects performance
|
6. **refactor**: Refactoring of code
|
||||||
7. **test**: Updating or improving the current tests
|
7. **perf**: Code that affects performance
|
||||||
8. **build**: Changes to Build process
|
8. **test**: Updating or improving the current tests
|
||||||
9. **revert**: Reverting to a previous commit
|
9. **build**: Changes to Build process
|
||||||
10. **chore** : updating grunt tasks etc
|
10. **revert**: Reverting to a previous commit
|
||||||
|
11. **chore** : updating grunt tasks etc
|
||||||
|
|
||||||
If there is a breaking change in your Pull Request, please add `BREAKING CHANGE` in the optional body section
|
If there is a breaking change in your Pull Request, please add `BREAKING CHANGE` in the optional body section
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue