Skip to content

dashboard presenting performance test results #10

dashboard presenting performance test results

dashboard presenting performance test results #10

name: build-performance-test-runner
on:
push:
branches:
- main
paths:
- "tests/performance/**"
pull_request_target:
paths:
- "tests/performance/**"
jobs:
compute-tags:
runs-on: ubuntu-latest
outputs:
tags: ${{ steps.get_tag.outputs.TAGS }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- if: ${{ !startsWith(github.event_name, 'pull_request') }}
name: Get the latest tag
id: get_tag
run: |
{
echo 'TAGS<<EOF'
echo "${{ github.sha }}"
echo "${{ github.ref_name}}"
echo EOF
} >> "$GITHUB_OUTPUT"
build-perf-test-runner:

Check failure on line 35 in .github/workflows/build-performance-test-runner.yaml

View workflow run for this annotation

GitHub Actions / build-performance-test-runner

Invalid workflow file

The workflow is not valid. .github/workflows/build-performance-test-runner.yaml (Line: 35, Col: 3): Error calling workflow 'kyma-project/test-infra/.github/workflows/image-builder.yml@main'. The nested job 'build-image' is requesting 'id-token: write', but is only allowed 'id-token: none'.
needs: compute-tags
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: performance-test-runner
dockerfile: Dockerfile
context: tests/performance
tags: ${{ needs.compute-tags.outputs.tags }}