From e1106392cad6056495045a08a2cf642ff5b4a897 Mon Sep 17 00:00:00 2001 From: Stanislas Date: Fri, 4 Oct 2024 11:24:11 +0200 Subject: [PATCH] add missing workflow for label --- .github/workflows/label-commenter.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/label-commenter.yml diff --git a/.github/workflows/label-commenter.yml b/.github/workflows/label-commenter.yml new file mode 100644 index 0000000..63706dd --- /dev/null +++ b/.github/workflows/label-commenter.yml @@ -0,0 +1,20 @@ +name: "Label commenter" + +on: + issues: + types: + - "labeled" + - "unlabeled" + +jobs: + comment: + permissions: + contents: "read" + issues: "write" + runs-on: "ubuntu-latest" + steps: + - name: "Checkout" + uses: "actions/checkout@v4" + + - name: "Label commenter" + uses: "peaceiris/actions-label-commenter@v1"