There was an error while loading. Please reload this page.
1 parent 70e2d2f commit bd8f05cCopy full SHA for bd8f05c
1 file changed
scripts/pr.ts
@@ -223,21 +223,6 @@ async function claCheck(ctx: CheckContext): Promise<CheckResult> {
223
let signedCla = contributors.includes(author);
224
console.log(`claCheck: ${ctx.author} signed CLA: ${signedCla}`);
225
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
235
- `claCheck: dry run; would request CLA signature and fail PR checks`,
236
237
- }
238
- return { actions: [] };
239
240
-
241
if (signedCla) {
242
return {
243
actions: [
0 commit comments