We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 422ab11 commit 727af6dCopy full SHA for 727af6d
.github/workflows/test.yaml
@@ -19,6 +19,10 @@ on:
19
type: string
20
description: The branch of the SDK to test
21
required: false
22
+ base_repo:
23
+ type: boolean
24
+ description: Explictly define the repository to test
25
+ required: false
26
27
env:
28
SDK_BRANCH: ${{ inputs.sdk_branch || github.head_ref || github.ref_name }}
@@ -50,8 +54,8 @@ jobs:
50
54
- name: Check out Java SDK
51
55
uses: actions/checkout@v4
52
56
with:
53
- repository: Eppo-exp/android-sdk
- ref: ${{ env.SDK_BRANCH}}
57
+ repository: ${{ inputs.base_repo || github.repository }}
58
+ ref: ${{ env.SDK_BRANCH }}
59
60
- name: Set up JDK 17
61
uses: actions/setup-java@v3
0 commit comments