Skip to content

Commit

Permalink
add missing workflow for label
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebuzz committed Oct 4, 2024
1 parent 7f58866 commit 1cb3b13
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/label-commenter.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 1cb3b13

Please sign in to comment.