OSDN Git Service

Create label-commenter.yml
authorNeko7sora <oeyvdfqbt@relay.firefox.com>
Fri, 11 Jun 2021 14:59:37 +0000 (23:59 +0900)
committerGitHub <noreply@github.com>
Fri, 11 Jun 2021 14:59:37 +0000 (23:59 +0900)
.github/workflows/label-commenter.yml [new file with mode: 0644]

diff --git a/.github/workflows/label-commenter.yml b/.github/workflows/label-commenter.yml
new file mode 100644 (file)
index 0000000..de41598
--- /dev/null
@@ -0,0 +1,27 @@
+name: Label Commenter
+
+on:
+  issues:
+    types:
+      - labeled
+      - unlabeled
+  pull_request_target:
+    types:
+      - labeled
+      - unlabeled
+
+permissions:
+  contents: read
+  issues: write
+  pull-requests: write
+
+jobs:
+  comment:
+    runs-on: ubuntu-18.04
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          ref: main # Set your default branch
+
+      - name: Label Commenter
+        uses: peaceiris/actions-label-commenter@v1