Skip to content

Commit bd8f05c

Browse files
committed
Take CLA check out of dry run mode
1 parent 70e2d2f commit bd8f05c

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

scripts/pr.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -223,21 +223,6 @@ async function claCheck(ctx: CheckContext): Promise<CheckResult> {
223223
let signedCla = contributors.includes(author);
224224
console.log(`claCheck: ${ctx.author} signed CLA: ${signedCla}`);
225225

226-
// Dry runs to start so we can monitor the flow alongside the bot
227-
let DRY_RUN = true;
228-
if (DRY_RUN) {
229-
if (signedCla) {
230-
console.log(
231-
`claCheck: dry run; would add '${CLA_SIGNED_LABEL}' label and comment that the CLA is signed`,
232-
);
233-
} else {
234-
console.log(
235-
`claCheck: dry run; would request CLA signature and fail PR checks`,
236-
);
237-
}
238-
return { actions: [] };
239-
}
240-
241226
if (signedCla) {
242227
return {
243228
actions: [

0 commit comments

Comments
 (0)