2021-11-20 01:00:51 +03:00
|
|
|
name: Release Drafter
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2023-04-26 00:56:08 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-11-20 01:00:51 +03:00
|
|
|
jobs:
|
|
|
|
update_release_draft:
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
pull-requests: read
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-19 01:27:48 +03:00
|
|
|
- uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 # v6
|
2021-11-20 01:00:51 +03:00
|
|
|
with:
|
|
|
|
disable-autolabeler: true
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|