Skip to content

Commit 44806a2

Browse files
committed
fix(ncu-ci): pass COMMIT_SHA_CHECK to V8 CI
Similar to `node-test-pull-request`, `node-test-commit-v8-linux` also now requires `COMMIT_SHA_CHECK` to be passed to it. Refs: #911
1 parent 404c0ac commit 44806a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/ci/run_ci.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ export class RunPRJob {
6262
parameter: [
6363
{ name: 'GITHUB_ORG', value: this.owner },
6464
{ name: 'REPO_NAME', value: this.repo },
65-
{ name: 'GIT_REMOTE_REF', value: `refs/pull/${this.prid}/head` }
65+
{ name: 'GIT_REMOTE_REF', value: `refs/pull/${this.prid}/head` },
66+
{ name: 'COMMIT_SHA_CHECK', value: this.certifySafe }
6667
]
6768
}));
6869
return payload;

0 commit comments

Comments
 (0)