Skip to content

Commit 12f3c81

Browse files
committed
Fix after re-review.
1 parent dac2d58 commit 12f3c81

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/scripts/pr_comment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = async ({github, context, process}) => {
3333
process.env.GITHUB_WORKSPACE + "/" + process.env.COMMENT_BODY, 'utf8');
3434
var comment_id = null
3535
var comment_marker = '\n' + process.env.COMMENT_MARKER
36-
var comment_body = body + comment_marker
36+
var comment_body = body + comment_marker
3737

3838
var comments = await octokit_rest.issues.listComments({
3939
owner: context.repo.owner,

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ jobs:
100100
uses: actions/upload-artifact@v3
101101
with:
102102
# We have a single artifact shared for each workflow run.
103-
# in this way we should intefere with coverage reports from other PRs
103+
# in this way we should not interfere with coverage reports from other PRs
104104
# or previous runs for the same PR.
105105
name: coverage-${{ github.run_id }}
106-
# Is important to keep the unique names for the coverage files
106+
# It is important to keep the unique names for the coverage files
107107
# so that when uploaded to the same artifact, they don't overlap.
108108
path: .coverage*
109109

0 commit comments

Comments
 (0)