Skip to content

Commit 35bf910

Browse files
committed
Fix dq
1 parent c9d8e47 commit 35bf910

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/manual-canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
commit_sha: response.data.head.sha,
3939
};
4040
console.log("data:", data);
41-
if(data.commit_sha !== "${{ inputs.commit_sha }}""){
41+
if(data.commit_sha !== "${{ inputs.commit_sha }}"){
4242
throw new Error("Input SHA does not match retrieved SHA")
4343
}
4444
return data;

.github/workflows/manual-pull-request-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
head_revision: response.data.head.sha,
3434
};
3535
console.log("data:", data);
36-
if(data.head_revision !== "${{ inputs.commit_sha }}""){
36+
if(data.head_revision !== "${{ inputs.commit_sha }}"){
3737
throw new Error("Input SHA does not match retrieved SHA")
3838
}
3939
return data;

0 commit comments

Comments
 (0)