Skip to content

Commit 2f9d29e

Browse files
authored
Added inactive issues aggressive workflows and wording to direct to v2 (#1534)
1 parent f33c6b1 commit 2f9d29e

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
codebuild-deploy.sh @brentley @aws-samples/k8s-content-admins
2-
config.toml @brentley @aws-samples/k8s-content-admins
3-
package-lock.json @brentley @aws-samples/k8s-content-admins
4-
package.json @brentley @aws-samples/k8s-content-admins
1+
codebuild-deploy.sh @aws-samples/k8s-content-admins
2+
config.toml @aws-samples/k8s-content-admins
3+
package-lock.json @aws-samples/k8s-content-admins
4+
package.json @aws-samples/k8s-content-admins
55

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This repository is in maintenance mode and currently only accepting bug-fixes. PRs for new content should be adapted for the new EKS Workshop: https://github.com/aws-samples/eks-workshop-v2
2+
13
*Issue #, if available:*
24

35
*Description of changes:*
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Close inactive issues
2+
on:
3+
schedule:
4+
- cron: "30 1,6,11,16 * * *"
5+
6+
jobs:
7+
close-issues:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
steps:
13+
- uses: actions/stale@v5
14+
with:
15+
days-before-issue-stale: 14
16+
days-before-issue-close: 7
17+
stale-issue-label: "stale"
18+
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
19+
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
20+
days-before-pr-stale: 7
21+
days-before-pr-close: 14
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/aws-samples/eks-workshop)
22

33
> **Warning**
4-
> This repository is in maintenance mode and currently only accepting bug-fixes. PRs for new content should be adapted for the new EKS Workshop, which will be published early 2023.
4+
> This repository is in maintenance mode and currently only accepting bug-fixes. PRs for new content should be adapted for the new EKS Workshop: https://github.com/aws-samples/eks-workshop-v2
55
66
# eksworkshop
77

0 commit comments

Comments
 (0)