From ab2d3f5f286465d8e4d350e4a81186e8bd90cbda Mon Sep 17 00:00:00 2001 From: Stanislas Date: Tue, 17 Dec 2024 16:31:22 +0100 Subject: [PATCH] Fix(CI): fix label commenter --- .../{workflows => }/label-commener-config.yml | 0 .github/workflows/label-commenter.yml | 20 +++++++++++++++++++ 2 files changed, 20 insertions(+) rename .github/{workflows => }/label-commener-config.yml (100%) create mode 100644 .github/workflows/label-commenter.yml diff --git a/.github/workflows/label-commener-config.yml b/.github/label-commener-config.yml similarity index 100% rename from .github/workflows/label-commener-config.yml rename to .github/label-commener-config.yml diff --git a/.github/workflows/label-commenter.yml b/.github/workflows/label-commenter.yml new file mode 100644 index 000000000..63706dd69 --- /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"