diff --git a/.github/actions/detect-changes/detectChanges.mjs b/.github/actions/detect-changes/detectChanges.mjs index 0176d8454..1a178fb01 100644 --- a/.github/actions/detect-changes/detectChanges.mjs +++ b/.github/actions/detect-changes/detectChanges.mjs @@ -225,12 +225,17 @@ async function main() { const branch = process.env.GITHUB_BASE_REF // If there's no branch, we're not in a pull request. +<<<<<<< Updated upstream if (!branch) { core.setOutput('code', false) core.setOutput('rsc', false) core.setOutput('ssr', false) +======= + core.setOutput('onlydocs', false) + core.setOutput('rsc', true) + core.setOutput('ssr', true) +>>>>>>> Stashed changes return - } const branchName = await getPrBranchName() const workflowRun = await getLatestCompletedWorkflowRun(branchName) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e15b1b813..7f4317dc5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ env: jobs: detect-changes: - if: github.repository == 'redwoodjs/redwood' + # if: github.repository == 'redwoodjs/redwood' name: 🔍 Detect changes runs-on: ubuntu-latest