Skip to content

Commit

Permalink
update file
Browse files Browse the repository at this point in the history
  • Loading branch information
jetzlstorfer committed Apr 9, 2024
1 parent 3be8c21 commit c1351d4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@ jobs:
fs.writeFileSync('./ISSUE_CONTENT.md', issue.data.body);
- name: comment on issue

uses: actions/github-script@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: 'I have written the issue content to a file. You can see it [here](./ISSUE_CONTENT.md).'
- name: Commit and push if it changed
run: |
Expand Down

0 comments on commit c1351d4

Please sign in to comment.