Skip to content

Commit 451e4d5

Browse files
fix: further adjustments on the GitHub comment
1 parent 203826f commit 451e4d5

File tree

7 files changed

+1879
-15
lines changed

7 files changed

+1879
-15
lines changed

.github/workflows/seocheck.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
name: Integraton Test
22

3-
on: [pull_request_target]
3+
on: [pull_request]
44

55
jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
with:
11-
ref: ${{ github.event.pull_request.head.sha }}
1210
- uses: actions/[email protected]
1311
with:
14-
version: 12
12+
node-version: 12
1513
- name: Markdown SEO Check
1614
uses: ./
1715
with:

.husky/commit-msg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
npx --no-install commitlint --edit $1
1+
npx commitlint --edit "$1"

dist/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -17833,10 +17833,12 @@ module.exports = /******/ (() => {
1783317833
try {
1783417834
core.info(`Starting Markdown SEO Check ...`)
1783517835
const files = await listFiles_files()
17836+
if (!files || files.length === 0) {
17837+
return
17838+
}
1783617839
const results = files.map(check).filter((i) => i.file)
1783717840
hasErrors = results.filter((r) => r.errors && r.errors.length > 0)
1783817841
const message = comment(results)
17839-
1784017842
if (message && message.length > 0) {
1784117843
await octokit.issues.createComment({
1784217844
...context.repo,

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)