diff --git a/.github/workflows/scripts/auto-assignment.js b/.github/workflows/scripts/auto-assignment.js index d08b06a8b7..f4979e71af 100644 --- a/.github/workflows/scripts/auto-assignment.js +++ b/.github/workflows/scripts/auto-assignment.js @@ -12,11 +12,11 @@ module.exports = async ({ github, context }) => { // Is this an issue? If so, assign the issue number. Otherwise, assign the PR number. if (context.payload.issue) { //assignee List for issues. - assigneesList = ["SuryanarayanaY", "sachinprasadhs"]; + assigneesList = ["sachinprasadhs"]; issueNumber = context.payload.issue.number; } else { //assignee List for PRs. - assigneesList = []; + assigneesList = ["sampathweb", "divyashreepathihalli"]; issueNumber = context.payload.number; } console.log("assignee list", assigneesList);