@@ -23,7 +23,7 @@ concurrency:
23
23
jobs :
24
24
stale :
25
25
if : >
26
- startsWith( github.repository, 'Homebrew/') && (
26
+ github.repository_owner == 'Homebrew' && (
27
27
github.event_name != 'issue_comment' || (
28
28
contains(github.event.issue.labels.*.name, 'stale') ||
29
29
contains(github.event.pull_request.labels.*.name, 'stale')
48
48
49
49
bump-pr-stale :
50
50
if : >
51
- startsWith( github.repository, 'Homebrew/') && (
51
+ github.repository_owner == 'Homebrew' && (
52
52
github.event_name != 'issue_comment' || (
53
53
contains(github.event.issue.labels.*.name, 'stale') ||
54
54
contains(github.event.pull_request.labels.*.name, 'stale')
@@ -70,13 +70,14 @@ jobs:
70
70
any-of-labels : " bump-formula-pr,bump-cask-pr"
71
71
72
72
lock-threads :
73
- if : startsWith( github.repository, 'Homebrew/') && github.event_name != 'issue_comment'
73
+ if : github.repository_owner == 'Homebrew' && github.event_name != 'issue_comment'
74
74
runs-on : ubuntu-latest
75
75
steps :
76
76
- name : Lock Outdated Threads
77
77
uses : dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771
78
78
with :
79
79
github-token : ${{ secrets.GITHUB_TOKEN }}
80
+ process-only : ' issues, prs'
80
81
issue-inactive-days : 30
81
82
add-issue-labels : outdated
82
83
pr-inactive-days : 30
0 commit comments