File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 BROWSER : ${{ github.event.client_payload.browser }}
99 REVISION : ${{ github.event.client_payload.revision }}
1010 BROWSER_VERSION : ${{ github.event.client_payload.browserVersion }}
11+ BUILD_LINK : ${{ github.event.client_payload.buildLink }}
1112
1213permissions :
1314 contents : write
@@ -62,12 +63,15 @@ jobs:
6263 with :
6364 github-token : ${{ steps.app-token.outputs.token }}
6465 script : |
66+ const buildLink = process.env.BUILD_LINK;
67+ const body = buildLink ? `Browser build: ${buildLink}. Build has full platform coverage - check that all tests pass there.` : undefined;
6568 const response = await github.rest.pulls.create({
6669 owner: 'microsoft',
6770 repo: 'playwright',
6871 head: 'microsoft:${{ steps.prepare-branch.outputs.BRANCH_NAME }}',
6972 base: 'main',
7073 title: 'feat(${{ env.BROWSER }}): roll to r${{ env.REVISION }}',
74+ body,
7175 });
7276 await github.rest.issues.addLabels({
7377 owner: 'microsoft',
You can’t perform that action at this time.
0 commit comments