Skip to content

Commit

Permalink
Update Oppiabot's comment for stale builds (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameesjohn authored Dec 14, 2020
1 parent 131daa0 commit 5aebb78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/periodicChecks.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ const checkAndTagPRsWithOldBuilds = async (context) => {
body:
'Hi @' + pullRequest.user.login + ', the build of this PR is ' +
'stale and this could result in tests failing in develop. Please ' +
'update this pull request with the latest changes from develop, ' +
'Thanks.',
'update this pull request with the latest changes from develop. ' +
'Thanks!',
});
context.github.issues.createComment(commentParams);
}
Expand Down
6 changes: 3 additions & 3 deletions spec/periodicChecksSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ describe('Periodic Checks Module', () => {
'Hi @' + pullRequests.prWithOldBuild.user.login + ', the build ' +
'of this PR is stale and this could result in tests failing in ' +
'develop. Please update this pull request with the latest ' +
'changes from develop, Thanks.',
'changes from develop. Thanks!',
}
);
});
Expand All @@ -1093,7 +1093,7 @@ describe('Periodic Checks Module', () => {
'Hi @' + pullRequests.prWithNewBuild.user.login + ', the build ' +
'of this PR is stale and this could result in tests failing in ' +
'develop. Please update this pull request with the latest ' +
'changes from develop, Thanks.',
'changes from develop. Thanks!',
}
);
});
Expand Down Expand Up @@ -1124,7 +1124,7 @@ describe('Periodic Checks Module', () => {
'Hi @' + pullRequests.prWithNewBuild.user.login + ', the build ' +
'of this PR is stale and this could result in tests failing in ' +
'develop. Please update this pull request with the latest ' +
'changes from develop, Thanks.',
'changes from develop. Thanks!',
}
);
});
Expand Down

0 comments on commit 5aebb78

Please sign in to comment.