From 5382be9650a137f90078937a09d75b2e4087c9db Mon Sep 17 00:00:00 2001 From: Dominic Saadi Date: Thu, 4 Apr 2024 16:35:37 -0700 Subject: [PATCH] enable ci for test repo --- .github/actions/detect-changes/detectChanges.mjs | 7 ++++++- .github/workflows/ci.yml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) 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