Skip to content

Commit 3db44b8

Browse files
committed
[feat] Update action variable name
1 parent b9414ca commit 3db44b8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ inputs:
2525
cloud-run-locally:
2626
description: 'If true, run tests locally instead and upload results to Grafana Cloud k6'
2727
required: false
28-
comment-cloud-test-run-url-on-pr:
28+
cloud-comment-on-pr:
2929
description: 'If true, comment the cloud test run URL on the pull request'
3030
default: "true"
3131
required: false

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34359,7 +34359,7 @@ async function run() {
3435934359
const failFast = core.getInput('fail-fast', { required: false }) === 'true';
3436034360
const flags = core.getInput('flags', { required: false });
3436134361
const cloudRunLocally = core.getInput('cloud-run-locally', { required: false }) === 'true';
34362-
const shouldCommentCloudTestRunUrlOnPR = core.getInput('comment-cloud-test-run-url-on-pr', { required: false }) === 'true';
34362+
const shouldCommentCloudTestRunUrlOnPR = core.getInput('cloud-comment-on-pr', { required: false }) === 'true';
3436334363
const allPromises = [];
3436434364
const isCloud = await isCloudIntegrationEnabled();
3436534365
const commands = testPaths.map(testPath => generateCommand(testPath)), TOTAL_TEST_RUNS = commands.length, TEST_RESULT_URLS_MAP = new Proxy({}, {

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function run(): Promise<void> {
2121
const failFast = core.getInput('fail-fast', { required: false }) === 'true'
2222
const flags = core.getInput('flags', { required: false })
2323
const cloudRunLocally = core.getInput('cloud-run-locally', { required: false }) === 'true'
24-
const shouldCommentCloudTestRunUrlOnPR = core.getInput('comment-cloud-test-run-url-on-pr', { required: false }) === 'true'
24+
const shouldCommentCloudTestRunUrlOnPR = core.getInput('cloud-comment-on-pr', { required: false }) === 'true'
2525
const allPromises: Promise<void>[] = [];
2626

2727
const isCloud = await isCloudIntegrationEnabled()

0 commit comments

Comments
 (0)