mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
17 lines
393 B
YAML
17 lines
393 B
YAML
name: Lock inactive threads
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 1 * * *'
|
|
|
|
jobs:
|
|
lock-threads:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Lock threads after 30 days of inactivity
|
|
uses: dessant/lock-threads@v5
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-inactive-days: 30
|
|
pr-inactive-days: 30
|
|
discussion-inactive-days: 30
|