fix: `pkg.pr.new` comment workflow (#14156)

* fix: `pkg.pr.new` comment workflow

* chore: remove path from initial workflow and add ls

* chore: add path back since it's mandatory
pull/14157/head
Paolo Ricciuti 1 week ago committed by GitHub
parent 0ce4b559f2
commit f1f4c29a99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -15,9 +15,10 @@ jobs:
uses: actions/download-artifact@v4
with:
name: output.json
path: output.json
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}
- run: ls -R .
- name: 'Post or update comment'
uses: actions/github-script@v6
with:
@ -85,8 +86,8 @@ jobs:
}
if (output.event_name === 'pull_request') {
if (context.issue.number) {
await create_or_update_comment(context.issue.number);
if (output.number) {
await create_or_update_comment(output.number);
}
} else if (output.event_name === 'push') {
const pull_requests = await github.rest.pulls.list({

@ -37,4 +37,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: output.json
path: output.json
path: ./output
- run: ls -R .

Loading…
Cancel
Save