Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/scripts/auto-assignment.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -37,4 +37,4 @@ module.exports = async ({github, context}) => {
repo: context.repo.repo,
assignees: [assigneeForIssue],
});
};
};
Loading