1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-20 13:57:23 +03:00
lens/.github/workflows/stale.yml
Sebastian Malton 7ccac061d9
Use actions@stale/v4 instead of actions@stale/4 (#4343)
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2021-11-17 08:02:06 -05:00

15 lines
364 B
YAML

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