1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Close issues with 'needs-information' after 60 days (#4305)

This commit is contained in:
Sebastian Malton 2021-11-10 16:39:57 -05:00 committed by GitHub
parent de4c7e4cff
commit d060459ccd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,14 @@
name: Cull Stale Issues
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@4
with:
only-issue-labels: "needs-information"
repo-token: "${{ secrets.GITHUB_TOKEN }}"
# -1 here means that PRs will never be marked as stale
days-before-pr-stale: -1