Skip to content

Commit

Permalink
Missing an s
Browse files Browse the repository at this point in the history
  • Loading branch information
leopic committed Mar 10, 2020
1 parent c05b83e commit 5f8aae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module.exports.getPushBlocks = (jobStatus, payload, runId) => {
const firstLine = `${repoName}\n`;
const secondLine = success ? `A *${verb}* was made to *${target}* ${emoji}\n` : `A *${verb}* to *${target}* failed ${emoji}\n`;
const message = [firstLine, secondLine];
const runURL = `${payload.repository.html_url}/actions/run/${runId}`;
const runURL = `${payload.repository.html_url}/actions/runs/${runId}`;

if (isDeploy && success) {
message.push(this.getCommitListMessage(payload));
Expand Down Expand Up @@ -113,7 +113,7 @@ module.exports.getPullRequestBlocks = (jobStatus, payload, runId) => {

const author = `<${payload.sender.html_url}|${payload.sender.login}>`;
const thirdLine = `${author} submitted a pull request`;
const runURL = `${payload.repository.html_url}/actions/run/${runId}`;
const runURL = `${payload.repository.html_url}/actions/runs/${runId}`;

return [
{
Expand Down

0 comments on commit 5f8aae1

Please sign in to comment.