Skip to content

Commit

Permalink
Fix label
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Sep 20, 2022
1 parent 812e56d commit 039b254
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion services/bots/src/github-webhook/handlers/validate-cla.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export class ValidateCla extends BaseWebhookHandler {
return;
}
try {
await this.githubApiClient.issues.removeLabel(context.issue({ name: 'dsf' }));
await this.githubApiClient.issues.removeLabel(
context.issue({ name: ClaIssueLabel.CLA_RECHECK }),
);
} catch {
// ignroe missing label
}
Expand Down

0 comments on commit 039b254

Please sign in to comment.