Skip to content
This repository was archived by the owner on Aug 13, 2024. It is now read-only.

Commit 64af9ae

Browse files
committed
GitHub Terraform: Create/Update .github/workflows/stale.yaml
1 parent 72e1e45 commit 64af9ae

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/stale.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#####################################
2+
# DO NOT EDIT DIRECTLY. #
3+
# This file is managed by Terraform #
4+
#####################################
5+
6+
name: 'Close stale PRs'
7+
on:
8+
schedule:
9+
- cron: '30 1 * * *'
10+
11+
jobs:
12+
stale:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/stale@v8
16+
with:
17+
stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
18+
close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.'
19+
days-before-pr-stale: 30
20+
days-before-pr-close: 7
21+
exempt-pr-labels: 'dependencies,security'

0 commit comments

Comments
 (0)