Skip to content

🌱 add samples and docs of the Dynamic Scoring Framework #249

🌱 add samples and docs of the Dynamic Scoring Framework

🌱 add samples and docs of the Dynamic Scoring Framework #249

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@7d0de46ba2385ec51c5ca6bae282916fe14053ba (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