-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d2dc15
commit fa3a012
Showing
1 changed file
with
34 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,34 @@ | ||
name: Issue Manager | ||
|
||
on: | ||
issues: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
on_duplicate: | ||
if: github.event.label.name == 'duplicate' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Add comment | ||
uses: peter-evans/create-or-update-comment@5f728c3dae25f329afbe34ee4d08eef25569d79f | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
This issue is a duplicate! | ||
Please make sure to check for existing issues in this repository before submitting an issue. | ||
If you believe this is a mistake, feel free to reply. | ||
- name: Close issue | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
github.rest.issues.update({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
state: "closed", | ||
state_reason: "not_planned" | ||
}); |