2023-05-12 01:21:28 +00:00
|
|
|
name: cron-lock
|
2023-05-05 02:17:29 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2023-05-12 01:21:28 +00:00
|
|
|
- cron: "0 0 * * *" # every day at 00:00 UTC
|
2023-05-05 02:17:29 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: lock
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
action:
|
|
|
|
runs-on: ubuntu-latest
|
2023-05-16 02:53:18 +00:00
|
|
|
if: github.repository == 'go-gitea/gitea'
|
2023-05-05 02:17:29 +00:00
|
|
|
steps:
|
2023-12-21 05:31:04 +00:00
|
|
|
- uses: dessant/lock-threads@v5
|
2023-05-05 02:17:29 +00:00
|
|
|
with:
|
2024-02-27 11:51:51 +00:00
|
|
|
issue-inactive-days: 10
|
|
|
|
pr-inactive-days: 7
|