File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,14 @@ jobs:
124124 return '';
125125 }
126126
127+ // TEMPORARY OVERRIDE FOR TESTING - Remove before production
128+ const testingOverride = 'https://1607.docs-14y.pages.dev';
129+ if (testingOverride) {
130+ core.warning(`Using temporary testing override URL: ${testingOverride}`);
131+ core.setOutput('branch_url', testingOverride);
132+ return;
133+ }
134+
127135 const branchUrl = extractBranchPreviewUrl(context.payload.comment.body);
128136 core.info(`Extracted Branch Preview URL: ${branchUrl}`);
129137 core.setOutput('branch_url', branchUrl);
Original file line number Diff line number Diff line change @@ -217,6 +217,14 @@ jobs:
217217 core.warning('Branch Preview URL not found within 2 minutes. Links will be added when Cloudflare comment triggers update workflow.');
218218 return '';
219219 }
220+ // TEMPORARY OVERRIDE FOR TESTING - Remove before production
221+ const testingOverride = 'https://1607.docs-14y.pages.dev';
222+ if (testingOverride) {
223+ core.warning(`Using temporary testing override URL: ${testingOverride}`);
224+ core.setOutput('base', testingOverride);
225+ return;
226+ }
227+
220228 let base = await waitForCloudflareBranchUrl();
221229 if (!base) base = await fromOurExistingComment();
222230 core.info(`Branch Preview URL found: ${base || '(not yet)'}`);
You can’t perform that action at this time.
0 commit comments