File tree Expand file tree Collapse file tree 4 files changed +159
-233
lines changed
Expand file tree Collapse file tree 4 files changed +159
-233
lines changed Original file line number Diff line number Diff line change @@ -101,11 +101,6 @@ jobs:
101101 throw new Error(`auto-merge-dependabot not permitted for author login: ${author.login} type: ${author.type}`);
102102 }
103103
104- let committer = commit.committer;
105- if (committer.login != 'dependabot[bot]' || committer.type != 'Bot') {
106- throw new Error(`auto-merge-dependabot not permitted for committer login: ${committer.login} type: ${committer.type}`);
107- }
108-
109104 }
110105
111106 if (commits.data.length>249) {
Original file line number Diff line number Diff line change @@ -83,6 +83,11 @@ resource "aws_iam_role_policy" "this" {
8383 policy = data. aws_iam_policy_document . this . json
8484}
8585
86+ resource "aws_iam_role_policy_attachment" "logging" {
87+ role = aws_iam_role. this . name
88+ policy_arn = " arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
89+ }
90+
8691resource "aws_iam_role_policy_attachment" "insights" {
8792 count = var. enable_lambda_insights ? 1 : 0
8893 role = aws_iam_role. this . name
You can’t perform that action at this time.
0 commit comments