Automatic release notes for gitea and forgejo. DOES NOT WORK ON GITHUB!
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.
 
 
ChristianSch 73b432ec85
Merge pull request #4 from raucao/bugfix/minor_versions
2 months ago
.github/workflows chore: fixed CI dir 3 months ago
src Merge pull request #4 from raucao/bugfix/minor_versions 2 months ago
.gitignore feat: implemented first version 3 months ago
Dockerfile feat: added missing dockerfile and runs.using configuration 3 months ago
LICENSE chore: added MIT license 3 months ago
README.md chore: updated readme with image 3 months ago
action.yml Revert "feat: trying out the go runner" 3 months ago
go.mod chore(libs): go mod tidy 3 months ago
go.sum chore(libs): go mod tidy 3 months ago
main.go feat: implemented first version 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.

Screenshot 2023-03-05 at 23 05 12

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 leading v)