You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 months ago | |
---|---|---|
.github/workflows | 3 months ago | |
src | 2 months ago | |
.gitignore | 3 months ago | |
Dockerfile | 3 months ago | |
LICENSE | 3 months ago | |
README.md | 3 months ago | |
action.yml | 3 months ago | |
go.mod | 3 months ago | |
go.sum | 3 months ago | |
main.go | 3 months ago |
README.md
gitea-release-drafter
Gitea Release Drafter automates release notes as a draft release whenever a pull request finds it's way into the default branch of your repository.
⚠️ This action is compatible with gitea and forgejo starting from version 1.19.0
.
Using The Release Drafter
...
config-path
to set the location of the action configuration. Defaults to .gitea/release-drafter.yml
Example Configuration
name-template: 'v$RESOLVED_VERSION 🌈'
tag-template: 'v$RESOLVED_VERSION'
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
Configuration Variables
RESOLVED_VERSION
: the proposed version for the next release (does not contain the leadingv
)