Skip to content

🌱 support clusterprofile access provider for kueue-addon #229

🌱 support clusterprofile access provider for kueue-addon

🌱 support clusterprofile access provider for kueue-addon #229

Workflow file for this run

name: pre
on:
pull_request:
workflow_dispatch:
concurrency:
group: pre-${{ github.ref }}
cancel-in-progress: true
jobs:
generate-matrix:
uses: ./.github/workflows/generate-matrix.yaml
secrets: inherit
call-test:
name: test
needs: generate-matrix
if: needs.generate-matrix.outputs.matrix != ''
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
uses: ./.github/workflows/test.yml

Check warning on line 23 in .github/workflows/pre.yml

View workflow run for this annotation

GitHub Actions / pre

Workflow syntax warning

In .github/workflows/pre.yml (Line: 23, Col: 11): Error from called workflow open-cluster-management-io/addon-contrib/.github/workflows/test.yml@81ba7c759d0f9f3ced15dc8b97acf2bf67db63d5 (Line: 61, Col: 9): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
with:
repo: ${{ matrix.repo }}
secrets: inherit
call-e2e:
name: e2e
needs: generate-matrix
if: needs.generate-matrix.outputs.matrix != ''
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
uses: ./.github/workflows/e2e.yml
with:
repo: ${{ matrix.repo }}
artifacts: ${{ fromJson(needs.generate-matrix.outputs.artifacts)[matrix.repo] }}
secrets: inherit