Skip to content

Commit

Permalink
Update github.js
Browse files Browse the repository at this point in the history
  • Loading branch information
crazygo authored Nov 14, 2024
1 parent 6647813 commit 58515e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const octokit = new Octokit({
auth: process.env.ACTIONS_TOKEN || process.env.GITHUB_TOKEN,
});

const botMessage = "**This issue was created by a bot. Please do not modify it directly.**";
const botMessage = "*This issue was created by a bot. Please do not modify it directly.*";

async function getOrCreateIssue(milestone) {
try {
Expand Down Expand Up @@ -83,7 +83,7 @@ async function updateIterationPlan(issue, milestone) {
owner,
repo,
issue_number: issue.number,
body: `Iteration Plan for milestone: ${milestone.title}\n\n${botMessage}\n\n${issueLinks}`,
body: `${botMessage}\n\nIteration Plan for milestone: ${milestone.title}\n\n${issueLinks}`,
});
} catch (error) {
console.error("Error in updateIterationPlan:", error);
Expand Down

0 comments on commit 58515e0

Please sign in to comment.