Skip to content

Commit 7fd542c

Browse files
chore: assign aws-cdk-owners members to PRs (#19925)
When a PR is opened, this automation will: - Assign the member from `aws-cdk-owners` with the lowest number of currently assigned PRs to the PR - Do nothing if the issue was submitted by someone from `aws-cdk-team` ---- ### All Submissions: * [ ] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/master/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent a79bc47 commit 7fd542c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Assigns members from team aws-cdk-owners to PRs"
2+
on:
3+
pull_request_target:
4+
types: [opened]
5+
6+
jobs:
7+
team-assignment-manager:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: peterwoodworth/team-assignment-manager@main
11+
with:
12+
github-token: "${{ secrets.PROJEN_GITHUB_TOKEN }}"
13+
team: "aws-cdk-owners"
14+
exempt-team: "aws-cdk-team"
15+

0 commit comments

Comments
 (0)