Skip to content

Commit

Permalink
Update auto-assignment.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sachinprasadhs authored Feb 8, 2024
1 parent 94d7327 commit a14d522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scripts/auto-assignment.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a14d522

Please sign in to comment.