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 f58b78d commit 42f0e2bCopy full SHA for 42f0e2b
.github/actions/list-pr/action.yml
@@ -69,7 +69,7 @@ runs:
69
const pr_urls = prs.map(pr => pr.html_url);
70
core.info(`prs: ${pr_urls.join("\n")}`);
71
} else {
72
- core.warning("No PR found");
+ core.warning("No pull requests found!");
73
}
74
75
const result = prs.map(pr => ({
.github/workflows/dispatch-event.yml
@@ -58,7 +58,7 @@ jobs:
58
59
dispatch-pr:
60
if: ${{ needs.list-pr.outputs.prs != '[]' }}
61
- name: 'Dispatch PR event - #${{ matrix.data.pull_request.number || '' }}'
+ name: 'Dispatch PR event - #${{ matrix.data.pull_request.number }}'
62
runs-on: ubuntu-latest
63
needs:
64
- list-pr
0 commit comments