Skip to content

Commit

Permalink
Update issue manager with "feedback requested" behavior
Browse files Browse the repository at this point in the history
We weren't using an "answered" label, so I just replaced it.

Triggers updated per documentation!
  • Loading branch information
mfisher87 committed Nov 22, 2023
1 parent c64b1d6 commit eeed2f2
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@master"
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 eeed2f2

Please sign in to comment.