Skip to content

Commit 3bffbb2

Browse files
authored
Merge branch 'main' into chore/apprunner-validation
2 parents b47b786 + 1d91926 commit 3bffbb2

File tree

20 files changed

+1941
-2403
lines changed

20 files changed

+1941
-2403
lines changed

.github/workflows/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,8 @@ Owner: CDK Support team
128128

129129
[project-prioritization-needs-attention.yml](project-prioritization-needs-attention.yml): GitHub action that runs every day to update Needs Attention field in the prioritization project board.
130130
Owner: CDK Support team
131+
132+
### PR Prioritization AddedOn update
133+
134+
[project-prioritization-added-on.yml](project-prioritization-added-on.yml): GitHub action that runs every day to update AddedOn field in the prioritization project board.
135+
Owner: CDK Support team
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: PR Prioritization AddedOn update
2+
3+
on:
4+
schedule:
5+
- cron: '0 */6 * * 1-5' # Runs every 6 hours during weekdays
6+
workflow_dispatch: # Manual trigger
7+
8+
jobs:
9+
update_added_on:
10+
if: github.repository == 'aws/aws-cdk'
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Update AddedOn field
16+
uses: actions/github-script@v7
17+
with:
18+
github-token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
19+
script: |
20+
const script = require('./scripts/prioritization/update-added-on.js')
21+
await script({github})

.github/workflows/yarn-upgrade.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ jobs:
3939
- name: Install Tools
4040
run: |-
4141
npm -g install lerna npm-check-updates
42-
- name: Build Integ Runner
43-
run: |
44-
export NODE_OPTIONS="--max-old-space-size=8196 --experimental-worker ${NODE_OPTIONS:-}"
45-
npx lerna run build --scope @aws-cdk/integ-runner
4642
- name: List Mono-Repo Packages
4743
id: list-packages
4844
# These need to be ignored from the `ncu` runs!
@@ -77,9 +73,6 @@ jobs:
7773
- name: Run "yarn upgrade"
7874
run: yarn upgrade
7975

80-
- name: Regenerate Integ Runner attributions
81-
run: cd packages/@aws-cdk/integ-runner && yarn pkglint
82-
8376
# Next, create and upload the changes as a patch file. This will later be downloaded to create a pull request
8477
# Creating a pull request requires write permissions and it's best to keep write privileges isolated.
8578
- name: Create Patch

packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/integ.ruby.file.js.snapshot/RubyRuntimeTestDefaultTestDeployAssert42E8EBE5.assets.json

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

packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/integ.ruby.file.js.snapshot/RubyRuntimeTestDefaultTestDeployAssert42E8EBE5.template.json

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

0 commit comments

Comments
 (0)