Skip to content

Trigger Load Tests #967

Trigger Load Tests

Trigger Load Tests #967

name: Trigger Load Tests
on:
workflow_dispatch:
inputs:
tests:
description: >
List of test names. This needs to be filled only if you want to run a specific set of tests. Example: foo,bar
required: false
clusterName:
description: 'Cluster name'
default: 'http-perf-cluster-test'
required: false
branch:
description: 'Branch of the given repository'
default: ''
required: false
schedule:
- cron: '0 17 * * *'
jobs:
call_stdlib_trigger_load_test_workflow:
name: Run StdLib Load Test Workflow
if: ${{ github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository_owner == 'ballerina-platform') }}
uses: ballerina-platform/ballerina-library/.github/workflows/trigger-load-tests-template.yml@main
with:
repo_name: 'module-ballerina-http'
runtime_artifacts_url: 'https://api.github.com/repos/ballerina-platform/module-ballerina-http/actions/artifacts'
dispatch_type: 'http-load-test'
cluster_name: ${{ inputs.clusterName }}
tests: ${{ inputs.tests }}
branch: ${{ inputs.branch }}
secrets:
ballerina_bot_token: ${{ secrets.BALLERINA_BOT_TOKEN }}