Skip to content

Commit

Permalink
WIP 5
Browse files Browse the repository at this point in the history
  • Loading branch information
plietar committed May 16, 2024
1 parent 5c76b04 commit 75b744f
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/touchstone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@ jobs:

- name: 'Comment on PR'
uses: actions/github-script@v3
script: |
var fs = require('fs');
var body = fs.readFileSync('./info.txt').toString();
await github.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: body
});
with:
script: |
var fs = require('fs');
var body = fs.readFileSync('./info.txt').toString();
await github.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: body
});

0 comments on commit 75b744f

Please sign in to comment.