1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/.github/workflows/stale.yml
Sebastian Malton 085d08cefd
Use specific version of actions/stale (#4330)
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2021-11-12 13:44:14 -05:00

15 lines
368 B
YAML

name: Cull Stale Issues
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@4.0.0
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