From ec9098c3f02aeaafb97de12d053b180006dbca09 Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Thu, 12 Oct 2023 10:55:02 +0200 Subject: [PATCH] Create label-actions.yaml --- .github/workflows/label-actions.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/label-actions.yaml diff --git a/.github/workflows/label-actions.yaml b/.github/workflows/label-actions.yaml new file mode 100644 index 0000000..6d17957 --- /dev/null +++ b/.github/workflows/label-actions.yaml @@ -0,0 +1,23 @@ +name: 'Label Actions' + +on: + issues: + types: [labeled, unlabeled] + pull_request: + types: [labeled, unlabeled] + discussion: + types: [labeled, unlabeled] + +permissions: + contents: read + issues: write + pull-requests: write + discussions: write + +jobs: + action: + runs-on: ubuntu-latest + steps: + - uses: dessant/label-actions@v3.1.0 + with: + config-path: .github/label-actions.yaml