Skip to content

Commit

Permalink
Adding new setting to manul start github action
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3Rabbit committed Oct 20, 2024
1 parent e209aa6 commit d93e2b8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/manual-start-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ on:
required: true
default: 'true'
type: string
data:
description: 'Setting general.review.data'
required: true
default: 'false'
type: string
env:
TEST_TAG: webperfse/webperf-core:test
jobs:
Expand All @@ -37,5 +42,5 @@ jobs:
tags: ${{ env.TEST_TAG }}
- name: Test ${{ github.event.inputs.test }} for ${{ github.event.inputs.url }}
run: |
testresult=$(docker run ${{ env.TEST_TAG }} python default.py -t ${{ github.event.inputs.test }} -r --setting general.review.details=${{ github.event.inputs.details }} -u ${{ github.event.inputs.url }})
testresult=$(docker run ${{ env.TEST_TAG }} python default.py -t ${{ github.event.inputs.test }} -r --setting general.review.details=${{ github.event.inputs.details }} --setting general.review.data=${{ github.event.inputs.data }} -u ${{ github.event.inputs.url }})
echo "$testresult"

0 comments on commit d93e2b8

Please sign in to comment.