Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.17.0
v0.17.1
3 changes: 2 additions & 1 deletion temporal/api/cloud/region/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Loading