Skip to content

Commit cac9a91

Browse files
committed
fix: labels contain approval
1 parent ada3ca6 commit cac9a91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/awscdk-app-ts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class AwsCdkTypeScriptApp extends awscdk.AwsCdkTypeScriptApp {
6767
if (!this.github?.mergify) {
6868
const conditions: Array<string> = [];
6969
conditions.push("github.event.pull_request.user.login == 'dependabot[bot]'");
70-
conditions.push("contains(github.event.pull_request.labels.*.name, 'auto-approve'");
70+
conditions.push("contains(github.event.pull_request.labels.*.name, 'auto-approve')");
7171
conditions.push("github.event.review.state == 'approved'");
7272

7373
const mergeJob: Job = {

0 commit comments

Comments
 (0)