1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2024-11-24 08:52:25 +02:00

Add GitHub Action to tidy stale issues

This commit is contained in:
Joel Speed 2020-03-01 15:59:52 +00:00 committed by GitHub
parent d934309b44
commit 85891a2261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,17 @@
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-message: 'This issue has been inactive for 60 days. If the issue is still relevant, please comment to re-activate the issue. If no action is taken within 7 days, the issue will be marked closed.'
stale-pr-message: 'This pull request has been inactive for 60 days. If the pull request is still relevant, please comment to re-activate the pull request. If no action is taken within 7 days, the pull request will be marked closed.'