@jjrawlins/cdk-iam-policy-builder-helper 0.0.17 → 0.0.18
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.
package/.jsii
CHANGED
package/.mergify.yml
CHANGED
|
@@ -5,6 +5,12 @@ queue_rules:
|
|
|
5
5
|
- label = automerge
|
|
6
6
|
- -label~=(do-not-merge)
|
|
7
7
|
- status-success=build
|
|
8
|
+
- status-success=build
|
|
9
|
+
- status-success=package-js
|
|
10
|
+
- status-success=package-python
|
|
11
|
+
- status-success=package-go
|
|
12
|
+
- -author=dependabot[bot]
|
|
13
|
+
- -author=projenbuildmanager[bot]
|
|
8
14
|
merge_method: squash
|
|
9
15
|
commit_message_template: |-
|
|
10
16
|
{{ title }} (#{{ number }})
|
|
@@ -20,15 +26,6 @@ pull_request_rules:
|
|
|
20
26
|
actions:
|
|
21
27
|
merge:
|
|
22
28
|
method: squash
|
|
23
|
-
delete_head_branch: {}
|
|
24
|
-
- name: Automatic merge
|
|
25
|
-
description: Merge when PR passes all branch protection and has label automerge
|
|
26
|
-
conditions:
|
|
27
|
-
- label = automerge
|
|
28
|
-
actions:
|
|
29
|
-
merge:
|
|
30
|
-
method: squash
|
|
31
|
-
delete_head_branch: {}
|
|
32
29
|
- name: Label conflicting pull requests
|
|
33
30
|
description: Add a label to a pull request with conflict to spot it easily
|
|
34
31
|
conditions:
|
|
@@ -46,7 +43,6 @@ pull_request_rules:
|
|
|
46
43
|
actions:
|
|
47
44
|
merge:
|
|
48
45
|
method: squash
|
|
49
|
-
delete_head_branch: {}
|
|
50
46
|
- name: Auto-merge dependency upgrade PRs CDK Stacks
|
|
51
47
|
conditions:
|
|
52
48
|
- head=github-actions/upgrade
|
|
@@ -55,17 +51,16 @@ pull_request_rules:
|
|
|
55
51
|
actions:
|
|
56
52
|
merge:
|
|
57
53
|
method: squash
|
|
58
|
-
|
|
59
|
-
- name: Automatic merge on approval and successful build
|
|
60
|
-
actions:
|
|
61
|
-
delete_head_branch: {}
|
|
62
|
-
queue:
|
|
63
|
-
name: default
|
|
64
|
-
merge:
|
|
65
|
-
method: squash
|
|
54
|
+
- name: Queue PRs with automerge label
|
|
66
55
|
conditions:
|
|
67
56
|
- label = automerge
|
|
68
57
|
- -label~=(do-not-merge)
|
|
69
58
|
- status-success=build
|
|
59
|
+
- status-success=package-js
|
|
60
|
+
- status-success=package-python
|
|
61
|
+
- status-success=package-go
|
|
62
|
+
actions:
|
|
63
|
+
queue:
|
|
64
|
+
name: default
|
|
70
65
|
merge_queue:
|
|
71
66
|
max_parallel_checks: 1
|
|
@@ -3,7 +3,7 @@ module github.com/jaysonrawlins/cdk-iam-policy-builder-helper/cdk-iam-policy-bui
|
|
|
3
3
|
go 1.23
|
|
4
4
|
|
|
5
5
|
require (
|
|
6
|
-
github.com/aws/jsii-runtime-go v1.
|
|
6
|
+
github.com/aws/jsii-runtime-go v1.114.1
|
|
7
7
|
github.com/aws/aws-cdk-go/awscdk/v2 v2.214.0
|
|
8
8
|
github.com/aws/constructs-go/constructs/v10 v10.4.2
|
|
9
9
|
github.com/projen/projen-go/projen v0.95.6
|
|
@@ -14,7 +14,7 @@ import (
|
|
|
14
14
|
projen "github.com/projen/projen-go/projen/jsii"
|
|
15
15
|
)
|
|
16
16
|
|
|
17
|
-
//go:embed jjrawlins-cdk-iam-policy-builder-helper-0.0.
|
|
17
|
+
//go:embed jjrawlins-cdk-iam-policy-builder-helper-0.0.17.tgz
|
|
18
18
|
var tarball []byte
|
|
19
19
|
|
|
20
20
|
// Initialize loads the necessary packages in the @jsii/kernel to support the enclosing module.
|
|
@@ -26,5 +26,5 @@ func Initialize() {
|
|
|
26
26
|
projen.Initialize()
|
|
27
27
|
|
|
28
28
|
// Load this library into the kernel
|
|
29
|
-
_jsii_.Load("@jjrawlins/cdk-iam-policy-builder-helper", "0.0.
|
|
29
|
+
_jsii_.Load("@jjrawlins/cdk-iam-policy-builder-helper", "0.0.17", tarball)
|
|
30
30
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.17
|