You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stale-issue-message: "This issue is stale because it has been inactive for an extended period. Stale issues convey that the issue, while important to someone, is not critical enough for the author, or other community members to work on, sponsor, or otherwise shepherd the issue through to a resolution."
29
+
close-issue-message: "This issue was closed because it has been stale for an extended period. It will be automatically locked in 30 days, after which no further commenting will be available."
30
+
days-before-pr-stale: 45
31
+
days-before-pr-close: 60
32
+
stale-pr-message: "This PR is stale because it has been inactive for an extended period. The longer a PR remains stale the more out of date with the main branch it becomes."
33
+
close-pr-message: "This PR was closed because it has been stale for an extended period. It will be automatically locked in 30 days. If there is still a commitment to finishing this PR re-open it before it is locked."
Copy file name to clipboardExpand all lines: .github/workflows/lock-threads.yml
+2-18
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ name: 'Lock Threads'
2
2
3
3
on:
4
4
schedule:
5
-
- cron: '50 1 * * *'
5
+
- cron: '50 2 * * *'
6
6
workflow_dispatch:
7
7
8
8
permissions:
@@ -14,24 +14,8 @@ concurrency:
14
14
group: lock-threads
15
15
16
16
jobs:
17
-
close-threads:
18
-
runs-on: ubuntu-latest
19
-
permissions:
20
-
issues: write
21
-
pull-requests: write
22
-
steps:
23
-
- uses: actions/stale@v5
24
-
with:
25
-
days-before-issue-stale: -1
26
-
days-before-issue-close: 60
27
-
stale-issue-message: "This issue is stale because it has been inactive for an extended period. Stale issues convey that the issue, while important to someone, is not critical enough for the author, or other community members to work on, sponsor, or otherwise shepherd the issue through to a resolution."
28
-
close-issue-message: "This issue was closed because it has been stale for an extended period. It will be automatically locked in 30 days, after which no further commenting will be available."
29
-
days-before-pr-stale: 45
30
-
days-before-pr-close: 60
31
-
stale-pr-message: "This PR is stale because it has been inactive for an extended period. The longer a PR remains stale the more out of date with the main branch it becomes."
32
-
close-pr-message: "This PR was closed because it has been stale for an extended period. It will be automatically locked in 30 days. If there is still a commitment to finishing this PR re-open it before it is locked."
Copy file name to clipboardExpand all lines: salt/common/tools/sbin/so-checkin
+7-2
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,13 @@
5
5
# https://securityonion.net/license; you may not use this file except in compliance with the
6
6
# Elastic License 2.0.
7
7
8
+
. /usr/sbin/so-common
8
9
10
+
cat <<EOF
9
11
10
-
. /usr/sbin/so-common
12
+
so-checkin will run a full salt highstate to apply all salt states. If a highstate is already running, this request will be queued and so it may pause for a few minutes before you see any more output. For more information about so-checkin and salt, please see:
0 commit comments