Skip to content

Commit

Permalink
Merge pull request #37 from stoovon/sm-fix-url
Browse files Browse the repository at this point in the history
Actions URI has changed. Update to use correct URI.
  • Loading branch information
orta authored Sep 19, 2022
2 parents deaa910 + dade743 commit 7abfe9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class Actor {
core.error(error)
core.setFailed("Failed to merge")

const linkToCI = `https://github.com/${thisRepo.owner}/${thisRepo.repo}/runs/${process.env.GITHUB_RUN_ID}?check_suite_focus=true`
const linkToCI = `https://github.com/${thisRepo.owner}/${thisRepo.repo}/actions/runs/${process.env.GITHUB_RUN_ID}?check_suite_focus=true`
await octokit.issues.createComment({ ...thisRepo, issue_number: issue.number, body: `There was an issue merging, maybe try again ${sender}. <a href="${linkToCI}">Details</a>` });
}
}
Expand Down

0 comments on commit 7abfe9e

Please sign in to comment.