Skip to content

Commit b9d0417

Browse files
authored
[2026.2] Harden API Test Run. (#208)
1 parent 79da451 commit b9d0417

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/api-tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ on:
1010
default: '2026.x'
1111
type: choice
1212
options:
13-
- '2026.1'
13+
- '2026.2'
1414
- '2026.x'
1515
platform_version:
16-
description: 'Platform version (e.g. 2026.1 or 2026.x)'
16+
description: 'Platform version (e.g. 2026.2 or 2026.x)'
1717
default: '2026.x'
1818
type: string
1919

2020
env:
21-
PLATFORM_VERSION: ${{ inputs.platform_version || '2026.x' }}
2221
PIMCORE_ENCRYPTION_SECRET: ${{ secrets.PIMCORE_CI_ENCRYPTION_SECRET }}
2322
PIMCORE_INSTANCE_IDENTIFIER: ${{ secrets.PIMCORE_CI_INSTANCE_IDENTIFIER }}
2423
PIMCORE_PRODUCT_KEY: ${{ secrets.PIMCORE_CI_PRODUCT_KEY }}
@@ -28,10 +27,13 @@ jobs:
2827
runs-on: ubuntu-latest
2928
timeout-minutes: 60
3029

30+
env:
31+
PLATFORM_VERSION: ${{ inputs.platform_version || matrix.branch }}
32+
3133
strategy:
3234
fail-fast: false
3335
matrix:
34-
branch: ${{ github.event_name == 'schedule' && fromJSON('["2026.1", "2026.x"]') || fromJSON(format('["{0}"]', inputs.branch)) }}
36+
branch: ${{ github.event_name == 'schedule' && fromJSON('["2026.2", "2026.x"]') || fromJSON(format('["{0}"]', inputs.branch)) }}
3537

3638
steps:
3739
- name: Checkout

0 commit comments

Comments
 (0)