Skip to content

Commit ec06191

Browse files
committed
test
1 parent 02da6f8 commit ec06191

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ class Utils {
828828
const githubJobId = Utils.encodeForUrl(process.env.GITHUB_JOB || '');
829829
const gitRepo = Utils.encodeForUrl(process.env.GITHUB_REPOSITORY || '');
830830
const runId = process.env.GITHUB_RUN_ID || '';
831-
return `![](${platformUrl}ui/api/v1/u?s=1&m=1&job_id=${githubJobId}&run_id=${runId}&git_repo=${gitRepo})`;
831+
return `![test](${platformUrl}ui/api/v1/u?s=1&m=1&job_id=${githubJobId}&run_id=${runId}&git_repo=${gitRepo})`;
832832
}
833833
static encodeForUrl(value) {
834834
return encodeURIComponent(value);

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ export class Utils {
916916
const gitRepo: string = Utils.encodeForUrl(process.env.GITHUB_REPOSITORY || '');
917917
const runId: string = process.env.GITHUB_RUN_ID || '';
918918

919-
return `![](${platformUrl}ui/api/v1/u?s=1&m=1&job_id=${githubJobId}&run_id=${runId}&git_repo=${gitRepo})`;
919+
return `![test](${platformUrl}ui/api/v1/u?s=1&m=1&job_id=${githubJobId}&run_id=${runId}&git_repo=${gitRepo})`;
920920
}
921921

922922
private static encodeForUrl(value: string): string {

0 commit comments

Comments
 (0)