Skip to content

Commit 475353c

Browse files
committed
Merge remote-tracking branch 'origin/main' into docs/bb-auth-cognito-admin-design
2 parents 0d62d88 + 9586841 commit 475353c

87 files changed

Lines changed: 5904 additions & 2183 deletions

File tree

Some content is hidden

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

.changeset/amplify-fresh-scaffold-guard.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.changeset/ci-pr-agent-bench.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/dsql-index-sort-order.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/help-template-descriptions.md

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@aws-blocks/hosting": patch
3+
---
4+
5+
docs(hosting): document custom domain configuration (Route 53 and bring-your-own DNS)

.github/ISSUE_TEMPLATE/bug-report.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
# Labels are applied by the issue-triage-opened workflow, not this template.
2+
# Adding a labels: field here would race with that workflow on the 'opened' event.
13
name: Bug Report
24
description: Create a report to help us improve AWS Blocks
3-
labels: ["bug", "pending-triage"]
45
body:
56
- type: markdown
67
attributes:

.github/ISSUE_TEMPLATE/feature-request.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
# Labels are applied by the issue-triage-opened workflow, not this template.
2+
# Adding a labels: field here would race with that workflow on the 'opened' event.
13
name: Feature Request
24
description: Suggest an idea to help us improve AWS Blocks
3-
labels: ["feature-request", "pending-triage"]
45
body:
56
- type: markdown
67
attributes:

.github/workflows/agent-bench.yml

Lines changed: 199 additions & 250 deletions
Large diffs are not rendered by default.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Close stale questions (pending-community-response)
2+
on:
3+
schedule:
4+
- cron: '30 2 * * *'
5+
workflow_dispatch: {}
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
cleanup:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
15+
with:
16+
only-issue-labels: pending-community-response,question
17+
stale-issue-label: pending-community-response
18+
days-before-issue-stale: -1
19+
days-before-issue-close: 14
20+
close-issue-message: >
21+
This issue has been automatically closed due to a lack of recent activity.
22+
Please feel free to reopen it if you have any further questions or information.
23+
days-before-pr-stale: -1
24+
days-before-pr-close: -1
25+
remove-issue-stale-when-updated: false
26+
operations-per-run: 100
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Issue Triage - Closed
2+
on:
3+
issues:
4+
types: [closed]
5+
6+
concurrency:
7+
group: issue-triage-${{ github.event.issue.number }}
8+
cancel-in-progress: false
9+
10+
permissions:
11+
issues: write
12+
13+
jobs:
14+
cleanup-labels:
15+
if: ${{ contains(github.event.issue.labels.*.name, 'pending-community-response') || contains(github.event.issue.labels.*.name, 'pending-maintainer-response') || contains(github.event.issue.labels.*.name, 'pending-triage') }}
16+
runs-on: ubuntu-latest
17+
env:
18+
ISSUE_NUMBER: ${{ github.event.issue.number }}
19+
REPOSITORY_NAME: ${{ github.repository }}
20+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
steps:
22+
- name: Remove all pending-* labels
23+
run: gh issue edit "$ISSUE_NUMBER" --repo "$REPOSITORY_NAME" --remove-label "pending-community-response" --remove-label "pending-maintainer-response" --remove-label "pending-triage"

0 commit comments

Comments
 (0)