Skip to content

feat(ci): add release-drafter ci/cd github action for automatic releases #1

feat(ci): add release-drafter ci/cd github action for automatic releases

feat(ci): add release-drafter ci/cd github action for automatic releases #1

Workflow file for this run

name: Release Drafter
on:
push:
branches:
- main
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
permissions:
contents: read
jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}