Skip to content

Commit 556621f

Browse files
authored
Merge branch 'main' into conroy/teleminteg
2 parents 09909a7 + 3d7b09b commit 556621f

File tree

163 files changed

+8907
-36470
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+8907
-36470
lines changed

.github/workflows/auto-approve.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/bootstrap-template-protection.yml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: "Close Stale Issues"
2+
3+
# Controls when the action will run.
4+
on:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: "0 */4 * * *"
8+
9+
jobs:
10+
cleanup:
11+
# this workflow will always fail in forks; bail if this isn't running in the upstream
12+
if: github.repository == 'aws/aws-cdk-cli'
13+
permissions:
14+
issues: write
15+
contents: read
16+
pull-requests: write
17+
runs-on: ubuntu-latest
18+
name: Stale issue job
19+
steps:
20+
- uses: aws-actions/stale-issue-cleanup@v6
21+
with:
22+
# Setting messages to an empty string will cause the automation to skip
23+
# that category
24+
ancient-issue-message: This issue has not received any attention in 1 year. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.
25+
stale-issue-message: This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.
26+
stale-pr-message: This PR has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.
27+
28+
# These labels are required
29+
stale-issue-label: closing-soon
30+
exempt-issue-labels: no-autoclose
31+
stale-pr-label: closing-soon
32+
exempt-pr-labels: no-autoclose
33+
response-requested-label: response-requested
34+
35+
# Don't set closed-for-staleness label to skip closing very old issues
36+
# regardless of label
37+
closed-for-staleness-label: closed-for-staleness
38+
39+
# Issue timing
40+
days-before-stale: 2
41+
days-before-close: 5
42+
days-before-ancient: 36500
43+
44+
# If you don't want to mark a issue as being ancient based on a
45+
# threshold of "upvotes", you can set this here. An "upvote" is
46+
# the total number of +1, heart, hooray, and rocket reactions
47+
# on an issue.
48+
minimum-upvotes-to-exempt: 5
49+
50+
repo-token: ${{ secrets.GITHUB_TOKEN }}
51+
loglevel: DEBUG
52+
# Set dry-run to true to not perform label or close actions.
53+
dry-run: false

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/integ.yml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/issue-label-assign.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/large-pr-checker.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/pull-request-lint.yml

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)