Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces changes to the release creation process, primarily focusing on the
create-sdk-releases.yml
andcreate-releases.ts
files. The modifications aim to enhance the release workflow by adding a new trigger mechanism and refining the release creation logic.Summary
push
event.languages
array is updated to include only "python", "typescript", and "go", removing the duplicate "typescript" entry.createRelease
function now uses a newtagName
variable, which is formatted using theformatTagName
function.createRelease
function is called with the "all" language, ensuring releases for all languages.bumpType
is set to "patch" for the release, indicating a minor update.Changes
create-sdk-releases.yml
file now includes apush
event trigger, allowing releases to be triggered automatically upon code pushes.create-releases.ts
file, thelanguages
array is modified to remove the duplicate "typescript" entry, ensuring a unique list of languages.createRelease
function increate-releases.ts
incorporates a newtagName
variable, enhancing the release process by providing a formatted tag name.language
parameter to "all", ensuring consistent releases across all specified languages.bumpType
is set to "patch", indicating a minor update, which is used to determine the next version for the release.