-
-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(reviewersInTeams): using teams to add reviews #125
base: master
Are you sure you want to change the base?
Conversation
Hi, @itomtom! Thanks for adding a new feature. I have reviewed it. This change needs the scope of https://github.com/kentaro-m/auto-assign/blob/master/app.yml#L105 members: read Also, I have checked your changes in my local environment and failed unit tests. I think I need to update the new version of the Probot.
diff --git a/package.json b/package.json
index 5cfa772..dd01781 100644
--- a/package.json
+++ b/package.json
@@ -39,7 +39,7 @@
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.18",
"lodash": "^4.17.15",
- "probot": "^9.6.3",
+ "probot": "^9.11.3",
"typescript": "^3.7.2"
},
"devDependencies": { I have not done a detailed review yet, so I will continue to check it. |
* Using GitHub teams you can specify reviewers to be added to Pull Request * GitHub team's slug name is used under the label reviewersInTeams to extract the members in the team Fixes kentaro-m#123
a63a68d
to
d7e792b
Compare
Is this PR stale? |
I'm just waiting for further reviews as I made an update push on 21st April. |
Hi, @itomtom. Building these codes and running unit tests are failed in my environment (Node.js v12.18.3). ~/workspace/github.com/kentaro-m/auto-assign ttruong/feat/reviewersInTeams 19s
❯ npm run build
> [email protected] build /Users/kentarom/workspace/github.com/kentaro-m/auto-assign
> tsc -p tsconfig.json
src/handler.ts:27:34 - error TS2339: Property 'listMembersInOrg' does not exist on type '{ addMember: { (params?: (RequestOptions & TeamsAddMemberParams) | undefined): Promise<Response<TeamsAddMemberResponse>>; endpoint: Endpoint; }; ... 32 more ...; updateDiscussionComment: { ...; }; }'.
27 await context.github.teams.listMembersInOrg({
~~~~~~~~~~~~~~~~
src/handler.ts:57:36 - error TS2339: Property 'listMembersLegacy' does not exist on type '{ addMember: { (params?: (RequestOptions & TeamsAddMemberParams) | undefined): Promise<Response<TeamsAddMemberResponse>>; endpoint: Endpoint; }; ... 32 more ...; updateDiscussionComment: { ...; }; }'.
57 await context.github.teams.listMembersLegacy({
~~~~~~~~~~~~~~~~~
Found 2 errors.
npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! [email protected] build: `tsc -p tsconfig.json`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/kentarom/.npm/_logs/2020-08-14T16_09_27_437Z-debug.log
~/workspace/github.com/kentaro-m/auto-assign ttruong/feat/reviewersInTeams
❯ npm test
> [email protected] test /Users/kentarom/workspace/github.com/kentaro-m/auto-assign
> jest
PASS test/util.test.ts
FAIL test/handler.test.ts
● Test suite failed to run
TypeScript diagnostics (customize using `[jest-config].globals.ts-jest.diagnostics` option):
test/handler.test.ts:943:50 - error TS2345: Argument of type '"listMembersLegacy"' is not assignable to parameter of type '"create" | "get" | "list" | "listForAuthenticatedUser" | "update" | "addMember" | "addOrUpdateMembership" | "addOrUpdateProject" | "addOrUpdateRepo" | "checkManagesRepo" | ... 23 more ... | "updateDiscussionComment"'.
943 const spy = jest.spyOn(context.github.teams, 'listMembersLegacy')
~~~~~~~~~~~~~~~~~~~
Test Suites: 1 failed, 1 passed, 2 total
Tests: 15 passed, 15 total
Snapshots: 0 total
Time: 2.387s, estimated 3s
Ran all test suites.
npm ERR! Test failed. See above for more details. |
const addAssigneesSpy = jest.spyOn(context.github.issues, 'addAssignees') | ||
const createReviewRequestSpy = jest.spyOn( | ||
const addAssigneesSpy: any = jest.spyOn(context.github.issues, 'addAssignees') | ||
const createReviewRequestSpy: any = jest.spyOn( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.github/auto-assign.yml
@@ -365,7 +365,7 @@ describe('handlePullRequest', () => { | |||
}) | |||
} as any | |||
|
|||
const spy = jest.spyOn(context.github.issues, 'addAssignees') | |||
const spy: any = jest.spyOn(context.github.issues, 'addAssignees') | |||
|
|||
await handlePullRequest(context) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.github/auto-assign.yml
Request
extract the members in the team
Fixes #123