fish-shell/.github/workflows/lockthreads.yml
Fabian Homborg 32c65aa32c Lock threads only once a day
This ran hourly, and that's really not necessary anymore.
2021-01-11 21:03:10 +01:00

17 lines
336 B
YAML

name: 'Lock threads'
on:
schedule:
- cron: '0 18 * * *'
jobs:
lock:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v2
with:
github-token: ${{ github.token }}
issue-lock-inactive-days: '180'
pr-lock-inactive-days: '180'
issue-exclude-labels: 'question'