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 Jan 28, 2024
1 parent 27353fe commit bb595a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 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)
return
}
core.setOutput('onlydocs', false)
core.setOutput('rsc', false)
core.setOutput('ssr', false)
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 @@ -16,7 +16,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 bb595a6

Please sign in to comment.