From 00998db4972ff3bc494f4e21be09a9d64ba6e266 Mon Sep 17 00:00:00 2001 From: Damien Date: Mon, 10 Mar 2025 10:45:45 +0100 Subject: [PATCH] ci: add permission to add labels to PR (#24) --- .github/workflows/conventional-label.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/conventional-label.yaml b/.github/workflows/conventional-label.yaml index 65dbf9c..89c15da 100644 --- a/.github/workflows/conventional-label.yaml +++ b/.github/workflows/conventional-label.yaml @@ -9,8 +9,10 @@ on: jobs: label: runs-on: ubuntu-latest + permissions: + pull-requests: write steps: - uses: bcoe/conventional-release-labels@v1 with: - ignore_types: '["chore", "ci"]' + ignored_types: '["chore", "ci"]' type_labels: '{"feat": "enhancement", "fix": "bug", "breaking": "breaking", "doc": "documentation"}'