Skip to content

Commit 2f91e4b

Browse files
authored
Issue markdown formatting changed (#16)
1 parent 798fc9c commit 2f91e4b

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
name: CI
2-
1+
name: ci
32
on: [push, pull_request]
4-
53
jobs:
64
build:
75
runs-on: ubuntu-latest
86
steps:
9-
uses: actions/checkout@v2
10-
uses: actions/[email protected]
7+
- uses: actions/checkout@v2
8+
- uses: actions/[email protected]
119
with:
12-
node-version: 14
13-
run: npm i
14-
run: npm run lint
15-
run: npm test
10+
node-version: 14.x
11+
- run: npm i
12+
- run: npm run lint
13+
- run: npm test
14+
1615
automerge:
1716
needs: build
1817
runs-on: ubuntu-latest

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6197,13 +6197,13 @@ Tag:${latestRelease.tag_name}, author:${latestRelease.author.login}`);
61976197
);
61986198

61996199
if (unreleasedCommits.length) {
6200-
const commitStr = unreleasedCommits.map((commit) => `Issue: ${commit.commit.message}
6200+
const commitStr = unreleasedCommits.map((commit) => `Commit: ${commit.commit.message}
62016201
Author: ${commit.commit.author.name}
62026202
62036203
`).join('');
62046204
const issueBody = `Unreleased commits have been found which are pending release, please publish the changes.
62056205
6206-
**Following are the commits:**
6206+
### Commits since the last release
62076207
${commitStr}`;
62086208
const issueTitle = 'Release pending!';
62096209

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Tag:${latestRelease.tag_name}, author:${latestRelease.author.login}`);
2525
);
2626

2727
if (unreleasedCommits.length) {
28-
const commitStr = unreleasedCommits.map((commit) => `Issue: ${commit.commit.message}
28+
const commitStr = unreleasedCommits.map((commit) => `Commit: ${commit.commit.message}
2929
Author: ${commit.commit.author.name}
3030
3131
`).join('');
3232
const issueBody = `Unreleased commits have been found which are pending release, please publish the changes.
3333
34-
**Following are the commits:**
34+
### Commits since the last release
3535
${commitStr}`;
3636
const issueTitle = 'Release pending!';
3737

0 commit comments

Comments
 (0)