-
-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #600 from foarsitter/issue-manager
Add issue-manager
- Loading branch information
Showing
1 changed file
with
47 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,47 @@ | ||
# Automatically close issues or pull requests that have a label, after a custom delay, if no one replies. | ||
# https://github.com/tiangolo/issue-manager | ||
name: Issue Manager | ||
|
||
on: | ||
schedule: | ||
- cron: "12 0 * * *" | ||
issue_comment: | ||
types: | ||
- created | ||
issues: | ||
types: | ||
- labeled | ||
pull_request_target: | ||
types: | ||
- labeled | ||
workflow_dispatch: | ||
|
||
jobs: | ||
issue-manager: | ||
# Disables this workflow from running in a repository that is not part of the indicated organization/user | ||
if: github.repository_owner == 'jazzband' | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: tiangolo/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
config: > | ||
{ | ||
"answered": { | ||
"delay": 864000, | ||
"message": "Assuming the question was answered, this will be automatically closed now." | ||
}, | ||
"solved": { | ||
"delay": 864000, | ||
"message": "Assuming the original issue was solved, it will be automatically closed now." | ||
}, | ||
"waiting": { | ||
"delay": 864000, | ||
"message": "Automatically closing after waiting for additional info. To re-open, please provide the additional information requested." | ||
}, | ||
"wontfix": { | ||
"delay": 864000, | ||
"message": "As discussed, we won't be implementing this. Automatically closing." | ||
} | ||
} |