Skip to content

Commit

Permalink
chore: self mutation
Browse files Browse the repository at this point in the history
Signed-off-by: team-tf-cdk <github-team-tf-cdk@hashicorp.com>
  • Loading branch information
team-tf-cdk authored and xiehan committed Dec 11, 2023
1 parent bd9e29b commit 7d9d13f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion projenrc/auto-approve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ export class AutoApprove {
},
});

(workflow.concurrency as any) = "${{ github.workflow }}-${{ github.head_ref }}";
(workflow.concurrency as any) =
"${{ github.workflow }}-${{ github.head_ref }}";

const maintainerStatuses = `fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]')`;
workflow.addJobs({
Expand Down
3 changes: 2 additions & 1 deletion projenrc/automerge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export class Automerge {
},
});

(workflow.concurrency as any) = "${{ github.workflow }}-${{ github.head_ref }}";
(workflow.concurrency as any) =
"${{ github.workflow }}-${{ github.head_ref }}";

const maintainerStatuses = `fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]')`;
workflow.addJobs({
Expand Down

0 comments on commit 7d9d13f

Please sign in to comment.