Skip to content

Commit

Permalink
Minor refactor and tests for body-file input
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-evans committed Oct 24, 2022
1 parent b9257b6 commit 40bf395
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 60 deletions.
7 changes: 7 additions & 0 deletions .github/comment-body-edited.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This is a multi-line test comment read from a file.
- With GitHub **Markdown** :sparkles:
- Created by [create-or-update-comment][1]

[1]: https://github.com/peter-evans/create-or-update-comment

*updated info*
File renamed without changes.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,21 @@ jobs:
comment-id: ${{ steps.couc.outputs.comment-id }}
reactions: heart, hooray, laugh

- name: Test create comment from file
uses: ./
id: couc2
with:
issue-number: ${{ needs.build.outputs.issue-number }}
body-file: .github/comment-body.md
reactions: '+1'

- name: Test update comment from file
uses: ./
with:
comment-id: ${{ steps.couc2.outputs.comment-id }}
body-file: .github/comment-body-edited.md
reactions: eyes

package:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: [test]
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/test-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,11 @@ jobs:
reactions: hooray

# Test create with body from file
- id: get-comment-body
run: |
body="$(cat .github/multiline-content.md)"
delimiter="$(openssl rand -hex 8)"
echo "body<<$delimiter" >> $GITHUB_OUTPUT
echo "$body" >> $GITHUB_OUTPUT
echo "$delimiter" >> $GITHUB_OUTPUT
- name: Create comment
uses: ./
with:
issue-number: 1
body: ${{ steps.get-comment-body.outputs.body }}
body-file: .github/comment-body.md

# Test create from template
- name: Render template
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,8 @@ This action was created to help facilitate a GitHub Actions "ChatOps" solution i
| `repository` | The full name of the repository in which to create or update a comment. | Current repository |
| `issue-number` | The number of the issue or pull request in which to create a comment. | |
| `comment-id` | The id of the comment to update. | |
| `body` | The comment body. | |
| `file` | The path to a file that can be read as `body`. Use either `file` or `body`, but not both. | |
| `fileEncoding` | The encoding of the file provided as `file`. | `utf8` |
| `body` | The comment body. Cannot be used in conjunction with `body-file`. | |
| `body-file` | The path to a file containing the comment body. Cannot be used in conjunction with `body`. | |
| `edit-mode` | The mode when updating a comment, `replace` or `append`. | `append` |
| `reactions` | A comma separated list of reactions to add to the comment. (`+1`, `-1`, `laugh`, `confused`, `heart`, `hooray`, `rocket`, `eyes`) | |

Expand Down Expand Up @@ -165,7 +164,7 @@ If required, the create and update steps can be separated for greater control.
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: 1
file: 'comment-body.txt'
body-file: 'comment-body.md'
```

### Using a markdown template
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ inputs:
comment-id:
description: 'The id of the comment to update.'
body:
description: 'The comment body.'
file:
description: 'The path to a file that can be read as `body`. Use either `file` or `body`, but not both.'
description: 'The comment body. Cannot be used in conjunction with `body-file`.'
body-file:
description: 'The path to a file containing the comment body. Cannot be used in conjunction with `body`.'
edit-mode:
description: 'The mode when updating a comment, "replace" or "append".'
reaction-type:
Expand Down
43 changes: 21 additions & 22 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9750,6 +9750,16 @@ async function addReactions(octokit, repo, comment_id, reactions) {
results = undefined;
}

function getBody(inputs) {
if (inputs.body) {
return inputs.body;
} else if (inputs.bodyFile) {
return readFileSync(inputs.bodyFile, 'utf-8');
} else {
return '';
}
}

async function run() {
try {
const inputs = {
Expand All @@ -9758,8 +9768,7 @@ async function run() {
issueNumber: core.getInput("issue-number"),
commentId: core.getInput("comment-id"),
body: core.getInput("body"),
file: core.getInput("file"),
fileEncoding: core.getInput("file-encoding") || 'utf8',
bodyFile: core.getInput("body-file"),
editMode: core.getInput("edit-mode"),
reactions: core.getInput("reactions")
? core.getInput("reactions")
Expand All @@ -9780,29 +9789,29 @@ async function run() {
return;
}

if (inputs.file && inputs.body) {
core.setFailed("Only one of 'file' or 'body' can be set.");
if (inputs.bodyFile && inputs.body) {
core.setFailed("Only one of 'body' or 'body-file' can be set.");
return;
}

if (inputs.file) {
if (!existsSync(inputs.file)) {
core.setFailed(`File '${inputs.file}' does not exist.`);
if (inputs.bodyFile) {
if (!existsSync(inputs.bodyFile)) {
core.setFailed(`File '${inputs.bodyFile}' does not exist.`);
return;
}
}

const body = getBody(inputs);

const octokit = github.getOctokit(inputs.token);

if (inputs.commentId) {
// Edit a comment
if (!inputs.body && !inputs.reactions && !inputs.file) {
core.setFailed("Missing either comment 'body', 'file', or 'reactions'.");
if (!body && !inputs.reactions) {
core.setFailed("Missing comment 'body', 'body-file', or 'reactions'.");
return;
}

const body = getBodyOrFile(inputs);

if (body) {
var commentBody = "";
if (editMode == "append") {
Expand Down Expand Up @@ -9833,10 +9842,8 @@ async function run() {
}
} else if (inputs.issueNumber) {
// Create a comment
const body = getBodyOrFile(inputs);

if (!body) {
core.setFailed("Missing comment 'body' or 'file'.");
core.setFailed("Missing comment 'body' or 'body-file'.");
return;
}

Expand Down Expand Up @@ -9868,14 +9875,6 @@ async function run() {
}
}

function getBodyOrFile (inputs) {
if (inputs.body) {
return inputs.body;
} else if (inputs.file) {
return readFileSync(inputs.file, inputs.fileEncoding);
}
}

run();

})();
Expand Down
43 changes: 21 additions & 22 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ async function addReactions(octokit, repo, comment_id, reactions) {
results = undefined;
}

function getBody(inputs) {
if (inputs.body) {
return inputs.body;
} else if (inputs.bodyFile) {
return readFileSync(inputs.bodyFile, 'utf-8');
} else {
return '';
}
}

async function run() {
try {
const inputs = {
Expand All @@ -72,8 +82,7 @@ async function run() {
issueNumber: core.getInput("issue-number"),
commentId: core.getInput("comment-id"),
body: core.getInput("body"),
file: core.getInput("file"),
fileEncoding: core.getInput("file-encoding") || 'utf8',
bodyFile: core.getInput("body-file"),
editMode: core.getInput("edit-mode"),
reactions: core.getInput("reactions")
? core.getInput("reactions")
Expand All @@ -94,29 +103,29 @@ async function run() {
return;
}

if (inputs.file && inputs.body) {
core.setFailed("Only one of 'file' or 'body' can be set.");
if (inputs.bodyFile && inputs.body) {
core.setFailed("Only one of 'body' or 'body-file' can be set.");
return;
}

if (inputs.file) {
if (!existsSync(inputs.file)) {
core.setFailed(`File '${inputs.file}' does not exist.`);
if (inputs.bodyFile) {
if (!existsSync(inputs.bodyFile)) {
core.setFailed(`File '${inputs.bodyFile}' does not exist.`);
return;
}
}

const body = getBody(inputs);

const octokit = github.getOctokit(inputs.token);

if (inputs.commentId) {
// Edit a comment
if (!inputs.body && !inputs.reactions && !inputs.file) {
core.setFailed("Missing either comment 'body', 'file', or 'reactions'.");
if (!body && !inputs.reactions) {
core.setFailed("Missing comment 'body', 'body-file', or 'reactions'.");
return;
}

const body = getBodyOrFile(inputs);

if (body) {
var commentBody = "";
if (editMode == "append") {
Expand Down Expand Up @@ -147,10 +156,8 @@ async function run() {
}
} else if (inputs.issueNumber) {
// Create a comment
const body = getBodyOrFile(inputs);

if (!body) {
core.setFailed("Missing comment 'body' or 'file'.");
core.setFailed("Missing comment 'body' or 'body-file'.");
return;
}

Expand Down Expand Up @@ -182,12 +189,4 @@ async function run() {
}
}

function getBodyOrFile (inputs) {
if (inputs.body) {
return inputs.body;
} else if (inputs.file) {
return readFileSync(inputs.file, inputs.fileEncoding);
}
}

run();

0 comments on commit 40bf395

Please sign in to comment.