From 520cbd6a286063d307423f267c193c718c94fb0c Mon Sep 17 00:00:00 2001 From: Stanislas Date: Fri, 4 Oct 2024 11:20:31 +0200 Subject: [PATCH] Feat(core): add action for invalid / feature issue (#32) --- .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"