-
Notifications
You must be signed in to change notification settings - Fork 890
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ jobs: | |
- name: Bump versions to ${{ env.RELEASE_VERSION }} | ||
run: | | ||
pip3 install lxml | ||
git checkout -b bump-version/$RELEASE_VERSION main | ||
git checkout -b release-kickoff/$RELEASE_VERSION main | ||
python3 ./CircleciScripts/bump_sdk_version.py "$(pwd)" "$RELEASE_VERSION" | ||
git config user.name aws-amplify-ops | ||
git config user.email [email protected] | ||
|
@@ -64,5 +64,5 @@ jobs: | |
gh pr create \ | ||
--title "chore: bump version and kick off release: $RELEASE_VERSION" \ | ||
--body "chore: bump version and kick off release: $RELEASE_VERSION" \ | ||
--head bump-version/$RELEASE_VERSION \ | ||
--head release-kickoff/$RELEASE_VERSION \ | ||
--base main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Release | |
on: | ||
pull_request: | ||
branches: | ||
- releases/* | ||
- release-kickoff/* | ||
types: | ||
- closed | ||
|
||
|