Skip to content

Commit bda68ce

Browse files
committed
Update comment
1 parent 7d94ee4 commit bda68ce

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
uses: actions/checkout@v1
1010

1111
- name: Comment PR
12-
uses: sbimochan/jira-link-commenter@v2.2
12+
uses: sbimochan/jira-link-commenter@v2.3
1313

1414
with:
1515
jira-project-url: https://jira.atlassian.net/browse

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/checkout@v1
3939

4040
- name: Comment PR
41-
uses: sbimochan/jira-link-commenter@v2.2
41+
uses: sbimochan/jira-link-commenter@v2.3
4242

4343
with:
4444
jira-project-url: https://jira.atlassian.net/browse

dist/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -8474,7 +8474,9 @@ async function runMain() {
84748474
await octokit.rest.issues.createComment({
84758475
...context.repo,
84768476
issue_number: pullRequestNumber,
8477-
body: `Jira link: ${jirProjectUrl + '/' + ticketNumber}`
8477+
body: `Thank you for your contribution! :confetti_ball: \n Jira link: ${
8478+
jirProjectUrl + '/' + ticketNumber
8479+
}`
84788480
});
84798481
} catch (error) {
84808482
core.setFailed(error.message);

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira-link-commenter",
3-
"version": "2.2",
3+
"version": "2.3",
44
"description": "This action auto comments in pull request with Jira link to it.",
55
"main": "src/main.js",
66
"scripts": {

src/main.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ async function runMain() {
3030
await octokit.rest.issues.createComment({
3131
...context.repo,
3232
issue_number: pullRequestNumber,
33-
body: `Jira link: ${jirProjectUrl + '/' + ticketNumber}`
33+
body: `Thank you for your contribution! :confetti_ball: \n Jira link: ${
34+
jirProjectUrl + '/' + ticketNumber
35+
}`
3436
});
3537
} catch (error) {
3638
core.setFailed(error.message);

0 commit comments

Comments
 (0)