Skip to content

Commit bca6494

Browse files
committed
chore: Add stale bot
Add filename to GH workflows name property Signed-off-by: Gordon Smith <[email protected]>
1 parent 24b8706 commit bca6494

File tree

7 files changed

+325
-1093
lines changed

7 files changed

+325
-1093
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "CodeQL"
12+
name: "CodeQL (codeql-analysis.yml)"
1313

1414
on:
1515
push:

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy vitepress content to Pages
1+
name: Deploy vitepress content to Pages (deploy-docs.yml)
22

33
on:
44
push:

.github/workflows/release-please.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Release Please (release-please.yml)
2+
13
on:
24
push:
35
branches:
@@ -7,8 +9,6 @@ permissions:
79
contents: write
810
pull-requests: write
911

10-
name: release-please
11-
1212
jobs:
1313
release-please:
1414
runs-on: ubuntu-latest

.github/workflows/stale.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'Close stale issues and PRs (stale.yml)'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
workflow_dispatch:
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/stale@v9
12+
with:
13+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
14+
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
15+
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
16+
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'
17+
days-before-issue-stale: 30
18+
days-before-pr-stale: 45
19+
days-before-issue-close: 5
20+
days-before-pr-close: 10

.github/workflows/test-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test PR
1+
name: Test PR (test-pr.yml)
22

33
env:
44
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

0 commit comments

Comments
 (0)