Skip to content
This repository has been archived by the owner on Mar 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #62 from comit-network/add-stale-bot
Browse files Browse the repository at this point in the history
add stale bot
  • Loading branch information
bonomat authored Mar 24, 2020
2 parents 83eb144 + 8c04567 commit b80476f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-label: 'no-activity'
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
stale-pr-label: 'no-activity'
exempt-issue-label: 'epic'
days-before-stale: 30
days-before-close: 7

0 comments on commit b80476f

Please sign in to comment.