Skip to content

Commit fd1809d

Browse files
authored
ci: changesets migration (#14695)
1 parent 3246992 commit fd1809d

20 files changed

Lines changed: 872 additions & 338 deletions

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
3+
"changelog": [
4+
"@changesets/changelog-github",
5+
{ "repo": "aws-amplify/amplify-js" }
6+
],
7+
"snapshot": {
8+
"useCalculatedVersion": true
9+
},
10+
"commit": false,
11+
"fixed": [],
12+
"linked": [],
13+
"access": "public",
14+
"baseBranch": "main",
15+
"updateInternalDependencies": "patch",
16+
"ignore": [
17+
"@aws-amplify/react-native-example",
18+
"@aws-amplify/rtn-passkeys-example",
19+
"tsc-compliance-test"
20+
]
21+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Has Changesets'
2+
description: 'Checks if `.changeset` directory has valid changesets'
3+
outputs:
4+
has-changesets:
5+
description: "Whether `.changeset` directory has at least one changeset"
6+
value: ${{ steps.check-changesets.outputs.has-changesets }}
7+
runs:
8+
using: "composite"
9+
steps:
10+
- name: Check .changeset folder for changesets
11+
id: check-changesets
12+
shell: bash
13+
run: |
14+
if (find .changeset -type f -name '*.md' ! -name 'README.md' | grep -q .) ; then
15+
echo "has-changesets=true" >> $GITHUB_OUTPUT
16+
else
17+
echo "has-changesets=false" >> $GITHUB_OUTPUT
18+
fi
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
'@aws-amplify/core': patch
3+
'@aws-amplify/auth': patch
4+
'@aws-amplify/analytics': patch
5+
'@aws-amplify/api': patch
6+
'@aws-amplify/api-graphql': patch
7+
'@aws-amplify/api-rest': patch
8+
'@aws-amplify/datastore': patch
9+
'@aws-amplify/datastore-storage-adapter': patch
10+
'@aws-amplify/geo': patch
11+
'@aws-amplify/interactions': patch
12+
'@aws-amplify/notifications': patch
13+
'@aws-amplify/predictions': patch
14+
'@aws-amplify/pubsub': patch
15+
'@aws-amplify/storage': patch
16+
'@aws-amplify/adapter-nextjs': patch
17+
'@aws-amplify/react-native': patch
18+
'@aws-amplify/rtn-push-notification': patch
19+
'@aws-amplify/rtn-web-browser': patch
20+
'@aws-amplify/rtn-passkeys': patch
21+
'aws-amplify': patch
22+
---
23+
24+
Unstable release - version bump for all public packages

.github/workflows/callable-npm-publish-lts-release.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

.github/workflows/callable-npm-publish-preid.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/callable-npm-publish-release.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

.github/workflows/push-latest-release.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/push-lts-release.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/push-main-release.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)