Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,9 @@ jobs:
path: junit-xml
retention-days: 14

# Run the test suite against Temporal Cloud (skipped on forks)
# Run the test suite against Temporal Cloud (skipped on forks and Dependabot-triggered runs)
cloud-test:
if: ${{ github.event.pull_request.head.repo.full_name == '' || github.event.pull_request.head.repo.full_name == 'temporalio/sdk-python' }}
if: ${{ github.actor != 'dependabot[bot]' && (github.event.pull_request.head.repo.full_name == '' || github.event.pull_request.head.repo.full_name == 'temporalio/sdk-python') }}
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
Expand Down
Loading