Skip to content

Commit

Permalink
Create issue-manager.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
markokhman authored Nov 28, 2023
1 parent 70ab8dc commit 19a5a29
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/issue-manager.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Issue Manager

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

# Jobs
jobs:
issue-manager:
runs-on: ubuntu-latest
steps:
- uses: tiangolo/issue-manager@0.4.0
with:
token: ${{ secrets.MY_PERSONAL_ACCESS_TOKEN }}
config: >
{
"Closing Soon as Not planning": {
"delay": 1209600,
"message": "This issue has been automatically closed due to 14 days of inactivity and lack of the additional information requested. \nPlease feel free to reopen it if you wish to provide further details or require assistance.",
"remove_label_on_comment": true,
"remove_label_on_close": false
}
}

0 comments on commit 19a5a29

Please sign in to comment.