From 48f4e74dc7ccc0c102de8d13fc290e6cf4a0e803 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 00:31:24 +0000 Subject: [PATCH 1/2] Bump release-drafter/release-drafter action to v7 --- .github/workflows/draft.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml index 0ceef7f..798452a 100644 --- a/.github/workflows/draft.yml +++ b/.github/workflows/draft.yml @@ -14,6 +14,6 @@ jobs: contents: write steps: # Drafts your next Release notes as Pull Requests are merged into "main" - - uses: release-drafter/release-drafter@v6 + - uses: release-drafter/release-drafter@v7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 263d9dd4e659e444082b6b05e2168801e4276a26 Mon Sep 17 00:00:00 2001 From: tr4nt0r <4445816+tr4nt0r@users.noreply.github.com> Date: Wed, 1 Apr 2026 12:04:44 +0200 Subject: [PATCH 2/2] changes --- .github/workflows/autolabel.yml | 19 +++++++++++++++++++ .github/workflows/draft.yml | 13 ++++--------- 2 files changed, 23 insertions(+), 9 deletions(-) create mode 100644 .github/workflows/autolabel.yml diff --git a/.github/workflows/autolabel.yml b/.github/workflows/autolabel.yml new file mode 100644 index 0000000..a2d1004 --- /dev/null +++ b/.github/workflows/autolabel.yml @@ -0,0 +1,19 @@ +name: Auto Label + +on: + pull_request: + # Only following types are handled by the action, but one can default to all as well + types: [opened, reopened, synchronize] + pull_request_target: + types: [opened, reopened, synchronize] + +permissions: + contents: read + +jobs: + auto_label: + permissions: + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter/autolabeler@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7 diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml index 798452a..358f30a 100644 --- a/.github/workflows/draft.yml +++ b/.github/workflows/draft.yml @@ -1,19 +1,14 @@ name: Release Drafter - on: push: branches: - main - jobs: - update-draft: + update_release_draft: runs-on: ubuntu-latest - permissions: - contents: write steps: - # Drafts your next Release notes as Pull Requests are merged into "main" - - uses: release-drafter/release-drafter@v7 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - uses: release-drafter/release-drafter/autolabeler@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7 + with: + token: ${{ secrets.GITHUB_TOKEN }}