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 Mar 26, 2024
1 parent 0e8c0ec commit b000de5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/actions/detect-changes/detectChanges.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,10 @@ async function main() {
const branch = process.env.GITHUB_BASE_REF

// If there's no branch, we're not in a pull request.
if (!branch) {
core.setOutput('onlydocs', false)
core.setOutput('rsc', false)
core.setOutput('ssr', false)
core.setOutput('rsc', true)
core.setOutput('ssr', true)
return
}

const changedFiles = await getChangedFiles()
console.log(`${changedFiles.length} changed files`)
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 b000de5

Please sign in to comment.