File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 4545
4646 - name : Find pull requests
4747 id : linked-prs
48- if : ${{ steps.trac-tickets.outputs.fixed_list != '' && steps.git-svn-id.outputs.svn_revision_number != '' }}
48+ if : ${{ true }}
4949 uses : actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
5050 with :
5151 script : |
5454 let prNumbers = [];
5555
5656 for (const ticket of fixedList) {
57- const tracTicketUrl = `https://core.trac.wordpress.org/ticket/${ ticket } `;
57+ const tracTicketUrl = `https://core.trac.wordpress.org/ticket/1234 `;
5858 const corePrefix = `Core-${ ticket }`;
5959 const query = `is:pr is:open repo:${ context.repo.owner }/${ context.repo.repo } in:body ${ tracTicketUrl } OR ${ corePrefix }`;
6060 const result = await github.rest.search.issues({ q: query });
You can’t perform that action at this time.
0 commit comments