Skip to content

Commit

Permalink
Merge pull request #10 from lldelisle/add_workflow_summary
Browse files Browse the repository at this point in the history
change encoding and remove check
  • Loading branch information
lldelisle authored Jan 11, 2024
2 parents 7cbfbfd + dc77882 commit 8fef005
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/comment_on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ jobs:
var fs = require('fs');
fs.writeFileSync('${{github.workspace}}/upload.zip', Buffer.from(download.data));
- run: unzip upload.zip
- name: Check the output of unzip
run: |
ls
- name: 'Comment on PR'
uses: actions/github-script@v3
with:
Expand All @@ -48,5 +45,5 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: fs.readFileSync('./tool_test_output.md')
body: fs.readFileSync('./tool_test_output.md', 'utf-8')
});

0 comments on commit 8fef005

Please sign in to comment.