Skip to content

Commit

Permalink
Use older e2e repo for tests as we are backporting
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkleeman committed Jan 31, 2024
1 parent 99e4c54 commit 17a68d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name: CI
on:
pull_request:
workflow_call:
inputs:
e2eRef:
description: 'e2e repo ref to execute tests from'
required: false
default: main
type: string
workflow_dispatch:
push:
branches:
Expand Down Expand Up @@ -82,4 +88,4 @@ jobs:
uses: restatedev/e2e/.github/workflows/e2e.yaml@main
with:
restateCommit: ${{ github.event.pull_request.head.sha || github.sha }}
e2eRef: main
e2eRef: ${{ inputs.e2eRef }}
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
needs: [verify-version]
uses: ./.github/workflows/ci.yml
secrets: inherit
with:
e2eRef: 5e28a0c7e0539425165493d046501968e6b41239 # use e2e repo from the time of 0.7.0

build-docker-image:
name: Build release Docker image
Expand Down

0 comments on commit 17a68d1

Please sign in to comment.