From 3452a34ffa0e400a4475b35d3684c2f585ab79dc Mon Sep 17 00:00:00 2001 From: David Liu Date: Wed, 27 May 2026 11:05:09 -0400 Subject: [PATCH 1/2] Add azure to region proto --- README.md | 2 +- VERSION | 2 +- temporal/api/cloud/region/v1/message.proto | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f3e7915..93d4ed6 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use the Cloud Ops API in your project, preform the following 4 steps: The client is expected to pass in a `temporal-cloud-api-version` header with the api version identifier with every request it makes to the apis. The backend will use the version to safely mutate resources. The `temporal:versioning:min_version` label specifies the minimum version of the API that supports the field. -Current Version `v0.16.0` +Current Version `v0.16.1` ### URL diff --git a/VERSION b/VERSION index cfe6c00..00ddfef 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.16.0 +v0.16.1 diff --git a/temporal/api/cloud/region/v1/message.proto b/temporal/api/cloud/region/v1/message.proto index dc913fe..91c2cab 100644 --- a/temporal/api/cloud/region/v1/message.proto +++ b/temporal/api/cloud/region/v1/message.proto @@ -30,6 +30,7 @@ message Region { enum CloudProvider { CLOUD_PROVIDER_UNSPECIFIED = 0; CLOUD_PROVIDER_AWS = 1; - CLOUD_PROVIDER_GCP = 2; + CLOUD_PROVIDER_GCP = 2; + CLOUD_PROVIDER_AZURE = 3; } } From d96598b927ebb260035b0f84418263f87a434e85 Mon Sep 17 00:00:00 2001 From: Abhinav Prasad Nekkanti <10552725+anekkanti@users.noreply.github.com> Date: Tue, 16 Jun 2026 11:53:42 -0700 Subject: [PATCH 2/2] Add a action to invoke the clddx-agent action --- .github/workflows/downstream.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/downstream.yml diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml new file mode 100644 index 0000000..32d7e12 --- /dev/null +++ b/.github/workflows/downstream.yml @@ -0,0 +1,22 @@ +name: Push changes to downstream repos on release + +on: + release: + types: [published] + +permissions: {} + +jobs: + dispatch: + runs-on: ubuntu-latest + steps: + - name: Dispatch clddx-agent + env: + GH_TOKEN: ${{ secrets.CLDDX_AGENT_PAT }} + API_TAG: ${{ github.event.release.tag_name }} + RELEASE_URL: ${{ github.event.release.html_url }} + run: | + gh api repos/temporalio/clddx-agent/dispatches \ + -f event_type=cloud-api-release \ + -f client_payload[api_tag]="$API_TAG" \ + -f client_payload[release_url]="$RELEASE_URL"