We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee0131c commit 00a5f9cCopy full SHA for 00a5f9c
.github/workflows/lock.yml
@@ -3,7 +3,8 @@ name: 'Lock Inactive Threads'
3
on:
4
schedule:
5
# midnight UTC, every Wednesday
6
- - cron: '0 0 * * 3'
+ - cron: '25 22 * * *'
7
+ - cron: '30 22 * * *'
8
# allow manual triggering from GitHub UI
9
workflow_dispatch:
10
@@ -42,4 +43,4 @@ jobs:
42
43
# what should the locking status be?
44
issue-lock-reason: 'resolved'
45
pr-lock-reason: 'resolved'
- process-only: 'issues, prs'
46
+ process-only: ${{ github.event.schedule == '25 22 * * *' && 'issues' || 'prs' }}
0 commit comments