diff --git a/.github/workflows/pull-request-lint.yml b/.github/workflows/pull-request-lint.yml index ebc45d6a..757a2bc2 100644 --- a/.github/workflows/pull-request-lint.yml +++ b/.github/workflows/pull-request-lint.yml @@ -36,7 +36,7 @@ jobs: PR_BODY: ${{ github.event.pull_request.body }} EXPECTED: By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of the project license. HELP: Contributor statement missing from PR description. Please include the following text in the PR description - if: "!(github.event.pull_request.user.login == 'github-actions@github.org')" + if: "!(github.event.pull_request.user.login == 'github-actions@github.org' || github.event.pull_request.user.login == 'emerging-tech-cdk-constructs-bot')" steps: - uses: actions/github-script@v6 with: diff --git a/.projenrc.ts b/.projenrc.ts index dd52e92f..f89def86 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -36,6 +36,7 @@ const project = new awscdk.AwsCdkConstructLibrary({ contributorStatementOptions: { exemptUsers: [ 'github-actions@github.org', + 'emerging-tech-cdk-constructs-bot', ], }, },