We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7837731 commit 6bdc2c2Copy full SHA for 6bdc2c2
.github/workflows/composer-update.yml
@@ -110,10 +110,8 @@ jobs:
110
const commitsFormattedList = commits.map((commit) => {
111
const commitSubject = commit.commit.message.split('\n')[0];
112
const regex = /\(#(\d+)\)$/s;
113
- const replacedCommitSubject = commitSubject.replace(regex, `(https://github.com/${owner}/${repo}/pull/$1)`);
114
- return `* ${replacedCommitSubject} ([${commit.sha}](${
115
- commit.html_url
116
- }))`;
+ const replacedCommitSubject = commitSubject.replace(regex, `(https://github.com/Humanoidfr/${repo}/pull/$1)`);
+ return `* ${replacedCommitSubject} ([${commit.sha}](${commit.html_url}))`;
117
});
118
return [...commitsFormattedList];
119
} catch (e) {
0 commit comments