Skip to content

Commit

Permalink
enable ci for test repo
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoar committed Apr 4, 2024
1 parent 93f3623 commit 5382be9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/actions/detect-changes/detectChanges.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 5382be9

Please sign in to comment.