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" diff --git a/README.md b/README.md index 9bc8883..8c167a2 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.17.0` +Current Version `v0.17.1` ### URL diff --git a/VERSION b/VERSION index 6b60281..0ffcf19 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.17.0 +v0.17.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; } }