You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected behaviour Release drafter could be adopted in the project to make it easier to publish new releases.
Current behaviour
Publishing releases require lot of manual work.
Describe alternatives you've considered
Continue using the current release progress.
Additional context
Here are some files that I have been drafting for this.
Contents of .github/workflows/release-drafter.yml
name: Release Drafteron:
push:
branches:
- main# pull_request event is required only for autolabelerpull_request:
types: [opened, reopened, synchronize]permissions:
contents: readjobs:
update_release_draft:
permissions:
# write permission is required to create a github releasecontents: write# write permission is required for autolabeler# otherwise, read permission is required at leastpull-requests: writeruns-on: ubuntu-lateststeps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v6# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml# with:# config-name: my-config.yml# disable-autolabeler: trueenv:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@LKajan I think it would be easier for you to implement this since you have push right to the repository and can thus experiment with this more easily.
Expected behaviour
Release drafter could be adopted in the project to make it easier to publish new releases.
Current behaviour
Publishing releases require lot of manual work.
Describe alternatives you've considered
Continue using the current release progress.
Additional context
Here are some files that I have been drafting for this.
Contents of .github/workflows/release-drafter.yml
Contents of .github/release-drafter.yml
The text was updated successfully, but these errors were encountered: