Skip to content

Commit 3ae7f3a

Browse files
authored
🎨 Avoid backlinks for references (#361)
* 🎨 Avoid backlinks for references * 🚀 Update deploy code * 🔖 Increase release version
1 parent b9b409c commit 3ae7f3a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "autodev-action",
3-
"version": "v2.4.0",
3+
"version": "v2.5.0",
44
"description": "Github Action that tries to merge all commits from a PR with the dev label into the dev branch.",
55
"type": "module",
66
"scripts": {

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Please check the logs of the github action.
5656
`
5757

5858
const pullURL = (owner: string, repo: string, number: number): string =>
59-
`https://github.com/${owner}/${repo}/pull/${number}`
59+
`https://redirect.github.com/${owner}/${repo}/pull/${number}`
6060

6161
export const createComments = async (
6262
octokit: InstanceType<typeof GitHub>,

0 commit comments

Comments
 (0)