diff --git a/.github/workflows/scripts/auto-assignment.js b/.github/workflows/scripts/auto-assignment.js index 3c420851..ac672594 100644 --- a/.github/workflows/scripts/auto-assignment.js +++ b/.github/workflows/scripts/auto-assignment.js @@ -13,7 +13,7 @@ module.exports = async ({github, context}) => { // Is this an issue? If so, assign the issue number. Otherwise, assign the PR // number. if (context.payload.issue) { - assigneesList = ['pkgoogle', 'gaikwadrahul8']; // for issues + assigneesList = ['dpknag', 'gaikwadrahul8']; // for issues issueNumber = context.payload.issue.number; } else { assigneesList = []; // for PRs @@ -37,4 +37,4 @@ module.exports = async ({github, context}) => { repo: context.repo.repo, assignees: [assigneeForIssue], }); -}; \ No newline at end of file +};