Skip to content

Commit

Permalink
add github actions
Browse files Browse the repository at this point in the history
handle stale issues
  • Loading branch information
sehaas authored Apr 4, 2022
1 parent 8ac5eca commit 8e806db
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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: '20 10 * * *'

jobs:
stale:

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

steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 42 days with no activity. Remove stale label or comment or this will be closed in 7 days'
stale-issue-label: 'stale'
days-before-stale: 42
days-before-close: 7

0 comments on commit 8e806db

Please # to comment.