Skip to content

Commit

Permalink
Merge pull request #361 from mfisher87/issue-manager-feedback-requested
Browse files Browse the repository at this point in the history
Update issue manager with "feedback requested" behavior
  • Loading branch information
mfisher87 authored Nov 23, 2023
2 parents 56fcdcd + 5b8a818 commit 69f9e46
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/issue-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,28 @@ name: "Issue Manager"

on:
schedule:
- cron: "0 0 * * *"
- cron: "0 0 * * *"
issue_comment:
types:
- "created"
issues:
types:
- "labeled"
pull_request_target:
types:
- "labeled"

jobs:
issue-manager:
runs-on: ubuntu-latest
runs-on: "ubuntu-latest"
steps:
- uses: tiangolo/issue-manager@master
- uses: "tiangolo/issue-manager@0.4.0"
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: "${{ secrets.GITHUB_TOKEN }}"
config: >
{
"answered": {
"users": ["betolink"],
"feedback requested": {
"delay": 864000,
"message": "Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues."
"message": "Closing after 10 days of waiting for feedback. If you feel this was in error, please re-open, `@` a maintainer, or create new issues."
}
}

0 comments on commit 69f9e46

Please sign in to comment.