Skip to content

Commit 9faa551

Browse files
author
Kamil Sobol
authored
Fix change sets (#893)
* build: align changeset with changes from #892 * build: align changeset with changes from #892
1 parent 04f0678 commit 9faa551

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.changeset/eight-suits-nail.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
'@aws-amplify/backend': patch
1717
'@aws-amplify/sandbox': patch
1818
'@aws-amplify/backend-cli': patch
19+
'@aws-amplify/backend-storage': patch
20+
'@aws-amplify/backend-output-storage': patch
1921
---
2022

2123
Implement consistent dependency declaration check. Bumped dependencies where necessary.

.github/workflows/health_checks.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,13 @@ jobs:
217217
fetch-depth: 0
218218
- uses: ./.github/actions/setup_node
219219
- uses: ./.github/actions/restore_install_cache
220-
- run: npx changeset status --since origin/main
220+
- name: Validate that PR has change set
221+
run: |
222+
npx changeset status --since origin/main
223+
- name: Validate that change set has necessary dependency updates
224+
run: |
225+
npx changeset version
226+
npm run check:dependencies
221227
check_package_versions:
222228
if: github.event_name == 'pull_request'
223229
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)