Go to file
Florian Beisel 74ea3835ba
fix: 🐛 fix the Duplication of PRs in Rrelease Draft
2024-01-15 13:19:45 +01:00
.github/workflows chore: fixed CI dir 2023-03-05 22:38:59 +01:00
src fix: 🐛 fix the Duplication of PRs in Rrelease Draft 2024-01-15 13:19:45 +01:00
.gitignore feat: implemented first version 2023-03-05 22:39:55 +01:00
Dockerfile feat: added missing dockerfile and runs.using configuration 2023-03-05 22:57:39 +01:00
LICENSE chore: added MIT license 2023-03-08 13:16:09 +01:00
README.md chore: updated readme with image 2023-03-05 23:06:05 +01:00
action.yml Revert "feat: trying out the go runner" 2023-03-06 09:55:51 +01:00
go.mod use our libraries and include pr categories 2024-01-14 10:52:48 +01:00
go.sum chore(libs): go mod tidy 2023-03-06 17:06:39 +01:00
main.go use our libraries and include pr categories 2024-01-14 10:52:48 +01:00

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)