Skip to content

Issue Manager

Issue Manager #17

Workflow file for this run

name: Issue Manager
on:
schedule:
- cron: "0 0 * * *"
issue_comment:
types:
- created
issues:
types:
- labeled
pull_request_target:
types:
- labeled
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
issue-manager:
runs-on: ubuntu-latest
steps:
- uses: tiangolo/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
config: |
{
"accepted": {
"delay": 0,
"message": "🎉 Your request was accepted, thank you for contributing!"
},
"duplicate": {
"delay": 0,
"message": "⚠️ Your request has been removed for being a duplicate, next time please check if the domain/bug that you want to report was not already reported before creating a new one."
},
"rejected": {
"delay": 0,
"message": "🚫 Your request was denied, please don't open an issue with the same domain/bug again! If you think there was an error, comment below and the issue will be reviewed again."
}
}