Skip to content
Closed
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
17 changes: 11 additions & 6 deletions .github/workflows/features-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,52 +17,57 @@ jobs:
permissions:
actions: write
contents: read
uses: temporalio/docker-builds/.github/workflows/docker-build-only.yml@main
uses: temporalio/docker-builds/.github/workflows/docker-build-only.yml@5c88dffd1836344bd1581a6a5944154e4cab852c
with:
temporal-server-repo-path: ${{github.event.pull_request.head.repo.full_name}}
temporal-server-repo-ref: ${{github.event.pull_request.head.ref}}

feature-tests-ts:
needs: build-docker-image
uses: temporalio/features/.github/workflows/typescript.yaml@main
uses: temporalio/features/.github/workflows/typescript.yaml@b81754e03450771a29bd8b5cebe2d7c9f6d45b83
with:
# This field is not actually used by these workflow if docker-image-artifact-name
# is set, but it's marked as required, so supply some string.
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
features-repo-ref: b81754e03450771a29bd8b5cebe2d7c9f6d45b83

feature-tests-go:
needs: build-docker-image
uses: temporalio/features/.github/workflows/go.yaml@main
uses: temporalio/features/.github/workflows/go.yaml@b81754e03450771a29bd8b5cebe2d7c9f6d45b83
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
features-repo-ref: b81754e03450771a29bd8b5cebe2d7c9f6d45b83

feature-tests-python:
needs: build-docker-image
uses: temporalio/features/.github/workflows/python.yaml@main
uses: temporalio/features/.github/workflows/python.yaml@b81754e03450771a29bd8b5cebe2d7c9f6d45b83
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
features-repo-ref: b81754e03450771a29bd8b5cebe2d7c9f6d45b83

feature-tests-java:
needs: build-docker-image
uses: temporalio/features/.github/workflows/java.yaml@main
uses: temporalio/features/.github/workflows/java.yaml@b81754e03450771a29bd8b5cebe2d7c9f6d45b83
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
features-repo-ref: b81754e03450771a29bd8b5cebe2d7c9f6d45b83

feature-tests-dotnet:
needs: build-docker-image
uses: temporalio/features/.github/workflows/dotnet.yaml@main
uses: temporalio/features/.github/workflows/dotnet.yaml@b81754e03450771a29bd8b5cebe2d7c9f6d45b83
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
features-repo-ref: b81754e03450771a29bd8b5cebe2d7c9f6d45b83

feature-tests-status:
name: Tests Status
Expand Down
Loading