cdk-aws-lambda-powertools-blueprint 0.1.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,11 @@
1
1
  {
2
- "$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
3
- "changelog": "@changesets/cli/changelog",
4
- "commit": false,
5
- "fixed": [],
6
- "linked": [],
7
- "access": "restricted",
8
- "baseBranch": "main",
9
- "updateInternalDependencies": "patch",
10
- "ignore": []
2
+ "$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
3
+ "changelog": "@changesets/cli/changelog",
4
+ "commit": false,
5
+ "fixed": [],
6
+ "linked": [],
7
+ "access": "restricted",
8
+ "baseBranch": "main",
9
+ "updateInternalDependencies": "patch",
10
+ "ignore": []
11
11
  }
@@ -1,5 +1,10 @@
1
+ name: PR checks
2
+
1
3
  on: pull_request
2
4
 
5
+ permissions:
6
+ contents: read
7
+
3
8
  jobs:
4
9
  checks:
5
10
  runs-on: ubuntu-slim
@@ -1,3 +1,5 @@
1
+ name: Release package
2
+
1
3
  on:
2
4
  push:
3
5
  branches:
@@ -5,6 +7,11 @@ on:
5
7
 
6
8
  concurrency: ${{ github.workflow }}-${{ github.ref }}
7
9
 
10
+ permissions:
11
+ id-token: write
12
+ contents: write
13
+ pull-requests: write
14
+
8
15
  jobs:
9
16
  release:
10
17
  runs-on: ubuntu-latest
@@ -13,9 +20,12 @@ jobs:
13
20
  - uses: actions/setup-node@v6
14
21
  with:
15
22
  node-version-file: .nvmrc
23
+ registry-url: "https://registry.npmjs.org"
16
24
  - name: Install dependencies
17
25
  run: npm ci
18
26
  - name: Create Release Pull Request
19
27
  uses: changesets/action@v1
28
+ with:
29
+ publish: npm run release
20
30
  env:
21
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
31
+ NPM_TRUSTED_PUBLISHER: true