From 23c337a58619fd5aac467b82fc3bfab2139db5d9 Mon Sep 17 00:00:00 2001 From: Aleksander Fidelus <63016446+FidelusAleksander@users.noreply.github.com> Date: Tue, 6 May 2025 13:10:24 +0000 Subject: [PATCH] chore: add actions label to labeler and release drafter configurations --- .github/labeler.yml | 5 +++++ .github/release-drafter.yml | 14 ++++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 1b1ed84..ba9ead3 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -12,6 +12,11 @@ workflows: - ".github/workflows/*.yml" - "!.github/workflows/_*.yml" +# Actions label for changes to the actions directory +actions: + - changed-files: + - any-glob-to-any-file: "actions/**/*" + # Documentation label for root level .md files and files in /docs/ directory documentation: - changed-files: diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 6d5ba87..83cf69d 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -9,6 +9,8 @@ categories: label: templates - title: ⚙️ Reusable Workflows label: workflows + - title: 🛠️ Actions + label: actions - title: 🔧 Maintenance label: maintenance - title: 📚 Documentation @@ -18,20 +20,20 @@ categories: collapse-after: 10 - title: ✍ Other changes -change-template: '- $TITLE (#$NUMBER)' +change-template: "- $TITLE (#$NUMBER)" version-resolver: major: labels: - - 'bump-major' - - 'breaking' + - "bump-major" + - "breaking" minor: labels: - - 'bump-minor' + - "bump-minor" default: patch template: | ## What's Changed - + $CHANGES exclude-labels: - - 'skip-release-notes' + - "skip-release-notes"