-
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Install actions-label-commenter"
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
labels: | ||
- name: resolved | ||
labeled: | ||
issue: | ||
body: | | ||
This issue has been **LOCKED** because of it being resolved! | ||
The issue has been fixed and is therefore considered resolved. | ||
If you still encounter this or it has changed, open a new issue instead of responding to solved ones. | ||
action: close | ||
locking: lock | ||
lock_reason: resolved |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Label Commenter | ||
uses: peaceiris/actions-label-commenter@v1 | ||
env: | ||
RUNNER_DEBUG: 1 |