4 Commits
v1.2.1 ... main

Author SHA1 Message Date
元凛
1fd5a8721a docs: update badge 2025-02-10 19:15:39 +08:00
元凛
b08ec27ac5 chore: update build 2025-02-10 19:12:52 +08:00
Middiu
0ca412d0d2 fix: undefined body (#27)
Fixing issue #26
2025-02-10 18:48:49 +08:00
xrkffgg
3a607d78a3 chore: update release 2022-09-23 14:35:46 +08:00
6 changed files with 25807 additions and 719 deletions

View File

@@ -1,5 +1,20 @@
<!--
🐞 Bug fix
🚀 New feature
💄 Perf
📝 Docs
⚡️ Code style
🛠 refactor
-->
# Changelog
## v1.2.2
`2025.02.10`
- 🐞 fix: undefined body. [#27](https://github.com/actions-cool/pr-extract-issues/pull/27) [@middiu](https://github.com/middiu)
## v1.2.1
`2022.09.23`

View File

@@ -1,6 +1,6 @@
# 🤠 PR Extract Issues
![](https://img.shields.io/github/workflow/status/actions-cool/pr-extract-issues/CI?style=flat-square)
![](https://img.shields.io/github/actions/workflow/status/actions-cool/pr-extract-issues/test.yml?style=flat-square&branch=main)
[![](https://img.shields.io/badge/marketplace-pr--extract--issues-blueviolet?style=flat-square)](https://github.com/marketplace/actions/pr-extract-issues)
[![](https://img.shields.io/github/v/release/actions-cool/pr-extract-issues?style=flat-square&color=orange)](https://github.com/actions-cool/pr-extract-issues/releases)

26497
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -21,7 +21,7 @@
},
"devDependencies": {
"@umijs/fabric": "^2.5.6",
"@vercel/ncc": "^0.27.0",
"@vercel/ncc": "0.34.0",
"chalk": "^4.1.2",
"new-github-release-url": "^1.0.0",
"open": "^7.3.0",

View File

@@ -31,7 +31,7 @@ function getChangelog(content) {
}
}
}
return changeLog.join('\n');
return changeLog.join('\n\n');
}
const changelogPath = path.join(__dirname, '..', CHANGELOG_NAME);

View File

@@ -27,7 +27,7 @@ async function run() {
issues.push(it.replace('#', ''));
}
});
} else if (way === 'body') {
} else if (way === 'body' && body) {
let arr = body.split('\n');
arr.forEach(it => {
if (it.startsWith('#')) {