@cloud-copilot/iam-shrink 0.1.70 → 0.1.72
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.
|
@@ -7,6 +7,7 @@ on:
|
|
|
7
7
|
- edited
|
|
8
8
|
- synchronize
|
|
9
9
|
- reopened
|
|
10
|
+
workflow_dispatch:
|
|
10
11
|
|
|
11
12
|
permissions:
|
|
12
13
|
contents: read
|
|
@@ -15,6 +16,7 @@ jobs:
|
|
|
15
16
|
main:
|
|
16
17
|
name: Validate PR title
|
|
17
18
|
runs-on: ubuntu-latest
|
|
19
|
+
if: github.event_name == 'pull_request_target'
|
|
18
20
|
steps:
|
|
19
21
|
- uses: amannn/action-semantic-pull-request@v5
|
|
20
22
|
env:
|
|
@@ -27,7 +29,7 @@ jobs:
|
|
|
27
29
|
- name: Check out the repository
|
|
28
30
|
uses: actions/checkout@v4
|
|
29
31
|
with:
|
|
30
|
-
ref: ${{ github.event.pull_request.head.sha }}
|
|
32
|
+
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
31
33
|
|
|
32
34
|
- name: Set up Node
|
|
33
35
|
uses: actions/setup-node@v4
|
|
@@ -47,7 +49,7 @@ jobs:
|
|
|
47
49
|
- name: Check out the repository
|
|
48
50
|
uses: actions/checkout@v4
|
|
49
51
|
with:
|
|
50
|
-
ref: ${{ github.event.pull_request.head.sha }}
|
|
52
|
+
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
51
53
|
|
|
52
54
|
- name: Set up Node
|
|
53
55
|
uses: actions/setup-node@v4
|
|
@@ -73,7 +75,7 @@ jobs:
|
|
|
73
75
|
- name: Check out the repository
|
|
74
76
|
uses: actions/checkout@v4
|
|
75
77
|
with:
|
|
76
|
-
ref: ${{ github.event.pull_request.head.sha }}
|
|
78
|
+
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
77
79
|
|
|
78
80
|
- name: Set up Python
|
|
79
81
|
uses: actions/setup-python@v5
|
|
@@ -9,8 +9,12 @@ jobs:
|
|
|
9
9
|
update-dependencies:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
permissions:
|
|
12
|
-
contents: write # Push branches
|
|
13
|
-
pull-requests: write # Create PRs
|
|
12
|
+
contents: write # Push branches, merge PRs, delete branches
|
|
13
|
+
pull-requests: write # Create and merge PRs
|
|
14
|
+
actions: write # Run check workflows
|
|
14
15
|
steps:
|
|
15
16
|
- name: Run dependency update
|
|
16
|
-
uses: cloud-copilot/update-dependencies@
|
|
17
|
+
uses: cloud-copilot/action-update-dependencies@fe48d42724df9c4ed34abf9c0cc97a8da42917f4
|
|
18
|
+
with:
|
|
19
|
+
check-workflow: pr-checks.yml
|
|
20
|
+
post-merge-workflow: release.yml
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [0.1.72](https://github.com/cloud-copilot/iam-shrink/compare/v0.1.71...v0.1.72) (2026-05-10)
|
|
2
|
+
|
|
3
|
+
## [0.1.71](https://github.com/cloud-copilot/iam-shrink/compare/v0.1.70...v0.1.71) (2026-05-03)
|
|
4
|
+
|
|
1
5
|
## [0.1.70](https://github.com/cloud-copilot/iam-shrink/compare/v0.1.69...v0.1.70) (2026-04-26)
|
|
2
6
|
|
|
3
7
|
## [0.1.69](https://github.com/cloud-copilot/iam-shrink/compare/v0.1.68...v0.1.69) (2026-04-11)
|