-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release' into temporal-cloud
- Loading branch information
Showing
957 changed files
with
12,543 additions
and
9,116 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,25 @@ | ||
name: Build and Validate Artifact | ||
description: Reusable action to build and validate the component artifact | ||
inputs: | ||
output-artifact: | ||
description: 'If provided, the action will output the artifact to the build directory' | ||
required: false | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Add data source ids to schema | ||
shell: bash | ||
run: | | ||
cd utils && yarn add-datasource-ids | ||
- name: Build & Validate Artifact | ||
shell: bash | ||
id: build-validate-artifact | ||
run: | | ||
cd utils && yarn build-validate-quickstart-artifact ${{ inputs.output-artifact && '--output-artifact' || '' }} | ||
- name: Debugging output | ||
shell: bash | ||
if: ${{ runner.debug }} | ||
run: ls -la utils/build |
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,16 @@ | ||
name: Bump version tag | ||
description: Bumps the version tag based on the latest version | ||
outputs: | ||
tag: | ||
description: The new tag prefixed with `v` | ||
value: ${{ steps.versions.outputs.v-version }} | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Get next version | ||
uses: reecetech/version-increment@a5d65984a6c6e8bbc30ece69d53d96e40736f24c | ||
id: versions | ||
with: | ||
scheme: semver | ||
increment: minor | ||
use_api: true |
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,32 @@ | ||
name: PR Validation | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
validate: | ||
name: Validate Artifact | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | ||
with: | ||
ref: ${{ github.sha }} | ||
- name: Setup workspace | ||
uses: "./.github/actions/bootstrap" | ||
- name: Validate PR Artifact | ||
uses: "./.github/actions/build-validate-artifact" | ||
validate-quickstart-ids: | ||
name: Validate Quickstart IDs | ||
runs-on: ubuntu-latest | ||
if: ${{ github.base_ref == 'main' && github.head_ref == 'release' }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | ||
with: | ||
ref: ${{ github.sha }} | ||
- name: Setup workspace | ||
uses: "./.github/actions/bootstrap" | ||
- name: Validate Quickstart IDs | ||
run: | | ||
cd utils && yarn validate-quickstart-ids |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.