We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7de2fd1 commit 940a1bdCopy full SHA for 940a1bd
index.js
@@ -31,6 +31,7 @@ const formatDescription = (description) => {
31
const nlCount = (ws.match(/\n/g) || []).length
32
return nlCount >= 2 ? '\n\n' : '\n'
33
})
34
+ .replace(/@(\S+)/g, (match, name) => { return `[@${name}](https://github.com/${name})` })
35
.trim()
36
37
if (core.getBooleanInput('reduce_headings')) {
@@ -174,4 +175,4 @@ async function run () {
174
175
176
run()
177
.then(() => {core.info('Action completed successfully')})
- .catch(err => {core.setFailed(err.message)})
178
+ .catch(err => {core.setFailed(err.message)})
0 commit comments