Skip to content

Commit

Permalink
TriagerX temporarily disables assignees predicition
Browse files Browse the repository at this point in the history
TriagerX temporarily disables assignees predicition to focus on Components.

Issue: eclipse-openj9#20489

Signed-off-by: LongyuZhang <[email protected]>
  • Loading branch information
LongyuZhang committed Nov 15, 2024
1 parent 9464ff3 commit 257acb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/recommendation.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ async function run() {
let resultString = `Issue Number: ${process.env.ISSUE_NUMBER}\n`;
resultString += 'Status: Open\n';
resultString += `Recommended Components: ${predictedLabels.join(', ')}\n`;
resultString += `Recommended Assignees: ${predictedAssignees.join(', ')}\n`;
// Temporarily disable assignees predicition due to https://github.com/eclipse-openj9/openj9/issues/20489
// resultString += `Recommended Assignees: ${predictedAssignees.join(', ')}\n`;

await octokit.rest.issues.createComment({
issue_number: process.env.ISSUE_NUMBER,
Expand Down

0 comments on commit 257acb5

Please sign in to comment.