Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/commenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Prepare artifact directory
run: mkdir -p "${{ runner.temp }}/comment-artifact"
- uses: actions/download-artifact@v8
with:
name: comment
run-id: ${{github.event.workflow_run.id }}
github-token: ${{secrets.GITHUB_TOKEN}}
path: ${{ runner.temp }}/comment-artifact
- name: Display structure of downloaded files
run: ls -R

Expand All @@ -32,7 +35,7 @@ jobs:
- run: pnpm install
name: Install dependencies

- run: pnpm chronus-github-pr-commenter --comment-file comment.json
- run: pnpm chronus-github-pr-commenter --comment-file "${{ runner.temp }}/comment-artifact/comment.json"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
name: Create/update comment
Loading