We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72bacfe commit afd0d59Copy full SHA for afd0d59
components/circleci/actions/rerun-workflow/rerun-workflow.mjs
@@ -66,7 +66,7 @@ export default {
66
workflowId: this.workflowId,
67
data: {
68
enable_ssh: this.enableSsh,
69
- from_failed: this.from_failed,
+ from_failed: this.fromFailed,
70
jobs: typeof this.jobIds === "string"
71
? JSON.parse(this.jobIds)
72
: this.jobIds,
components/circleci/sources/common/base.mjs
@@ -63,6 +63,9 @@ export default {
63
verifySignature({
64
headers, body,
65
}) {
+ if (!headers["circleci-signature"]) {
+ return false;
+ }
const secret = this._getSigningSecret();
const signatureFromHeader = headers["circleci-signature"]
.split(",")
0 commit comments