* Change titels to reflect official/new naming * Use GitHub Actions to trigger Release Drafter The Add-On is no longer developed and GitHub Actions is the recommended way to use the Release Drafter
16 lines
258 B
YAML
16 lines
258 B
YAML
name: Release Drafter
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- rel-4
|
|
|
|
jobs:
|
|
update_release_draft:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: release-drafter/release-drafter@v5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|