![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [tiangolo/issue-manager](https://github.com/tiangolo/issue-manager) from 0.2.0 to 0.5.0. - [Release notes](https://github.com/tiangolo/issue-manager/releases) - [Commits](https://github.com/tiangolo/issue-manager/compare/0.2.0...0.5.0) --- updated-dependencies: - dependency-name: tiangolo/issue-manager dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
648 B
YAML
29 lines
648 B
YAML
name: Issue Manager
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
issue_comment:
|
|
types:
|
|
- created
|
|
- edited
|
|
issues:
|
|
types:
|
|
- labeled
|
|
|
|
jobs:
|
|
issue-manager:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: tiangolo/issue-manager@0.5.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
config: >
|
|
{
|
|
"answered": {
|
|
"users": ["tiangolo"],
|
|
"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."
|
|
}
|
|
}
|