We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9d8e47 commit 35bf910Copy full SHA for 35bf910
.github/workflows/manual-canary.yml
@@ -38,7 +38,7 @@ jobs:
38
commit_sha: response.data.head.sha,
39
};
40
console.log("data:", data);
41
- if(data.commit_sha !== "${{ inputs.commit_sha }}""){
+ if(data.commit_sha !== "${{ inputs.commit_sha }}"){
42
throw new Error("Input SHA does not match retrieved SHA")
43
}
44
return data;
.github/workflows/manual-pull-request-bot.yml
@@ -33,7 +33,7 @@ jobs:
33
head_revision: response.data.head.sha,
34
35
36
- if(data.head_revision !== "${{ inputs.commit_sha }}""){
+ if(data.head_revision !== "${{ inputs.commit_sha }}"){
37
0 commit comments