Skip to content

Commit

Permalink
Add stale issue bot (dmlc#3673)
Browse files Browse the repository at this point in the history
* Create stale.yml

* Update stale.yml
  • Loading branch information
VoVAllen authored Jan 23, 2022
1 parent 512a80b commit d3930ba
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests

on:
schedule:
- cron: '0 1 * * *'

jobs:
stale:

runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-issue-stale: 30
days-before-issue-close: 7
days-before-pr-stale: -1 # disable stale bot on pr
days-before-pr-close: -1 # disable stale bot on pr
stale-issue-message: 'This issue has been automatically marked as stale due to lack of activity. It will be closed if no further activity occurs. Thank you'
close-issue-message: 'This issue is closed due to lack of activity. Feel free to reopen it if you still have questions.'
stale-issue-label: 'stale-issue'
exempt-issue-labels: 'RFC,pinned,bug,dist DGL,doc,enhancement,feature request,help wanted,model request,wontfix,Suspended,system performance,windows,PyTorch,MXNet,TensorFlow'

0 comments on commit d3930ba

Please sign in to comment.