-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/ExpediaGroup/expediagroup-j…
…ava-sdk into dependabot/maven/main/org.jetbrains.kotlinx-kotlinx-coroutines-bom-1.7.3 # Conflicts: # pom.xml
- Loading branch information
Showing
2,654 changed files
with
42,520 additions
and
5,764 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
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
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Generate SDK - Main | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
name: | ||
description: 'SDK Name' | ||
required: true | ||
version: | ||
description: 'SDK Version' | ||
required: true | ||
endpoint_prefix: | ||
description: 'Endpoint to prepend specs paths with' | ||
required: true | ||
type: string | ||
specs_url: | ||
description: 'URL to download API specs from' | ||
required: true | ||
type: string | ||
production_release: | ||
description: 'Release to production' | ||
required: true | ||
type: boolean | ||
default: false | ||
jobs: | ||
download_specs: | ||
uses: ./.github/workflows/generator-download-specs.yaml | ||
with: | ||
url: ${{ github.event.inputs.specs_url }} | ||
transform_specs: | ||
needs: [ download_specs ] | ||
uses: ./.github/workflows/generator-transform-specs.yaml | ||
with: | ||
configurations: -th -te ${{ github.event.inputs.endpoint_prefix }} -tt ${{ github.event.inputs.name }} | ||
generate: | ||
needs: [ transform_specs ] | ||
uses: ./.github/workflows/generator-generate.yaml | ||
with: | ||
name: ${{ github.event.inputs.name }} | ||
version: ${{ github.event.inputs.version }} | ||
publish_sources: | ||
if: ${{ github.event.inputs.production_release == 'true' }} | ||
needs: [ generate ] | ||
uses: ./.github/workflows/generator-publish-sources.yaml | ||
with: | ||
name: ${{ github.event.inputs.name }} | ||
version: ${{ github.event.inputs.version }} | ||
publish_artifact: | ||
needs: [ generate ] | ||
uses: ./.github/workflows/generator-publish-artifact.yaml | ||
secrets: inherit | ||
with: | ||
production_release: ${{ github.event.inputs.production_release == 'true' }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
File renamed without changes.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Open World SDK Core Change Log | ||
# Expedia Group SDK Core Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
### [0.0.1] 2022.08.xx | ||
* Initial release | ||
* Initial release |
Oops, something went wrong.