We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc40e82 commit f1f5351Copy full SHA for f1f5351
.github/actions/list-pr/action.yml
@@ -70,7 +70,6 @@ runs:
70
core.info(`prs: ${pr_urls.join("\n")}`);
71
} else {
72
core.warning("No PR found");
73
- return null;
74
}
75
76
const result = prs.map(pr => ({
.github/workflows/dispatch-event.yml
@@ -57,7 +57,7 @@ jobs:
57
hours: ${{ github.event.inputs.hours || '24' }}
58
59
dispatch-pr:
60
- if: ${{ needs.list-pr.outputs.prs }}
+ if: ${{ needs.list-pr.outputs.prs != '[]' }}
61
name: 'Dispatch PR event - #${{ matrix.data.pull_request.number }}'
62
runs-on: ubuntu-latest
63
needs:
0 commit comments