issue-manager.yml 648 B

12345678910111213141516171819202122232425262728
  1. name: Issue Manager
  2. on:
  3. schedule:
  4. - cron: "0 0 * * *"
  5. issue_comment:
  6. types:
  7. - created
  8. - edited
  9. issues:
  10. types:
  11. - labeled
  12. jobs:
  13. issue-manager:
  14. runs-on: ubuntu-latest
  15. steps:
  16. - uses: tiangolo/issue-manager@0.5.0
  17. with:
  18. token: ${{ secrets.GITHUB_TOKEN }}
  19. config: >
  20. {
  21. "answered": {
  22. "users": ["tiangolo"],
  23. "delay": 864000,
  24. "message": "Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues."
  25. }
  26. }