Skip to content

Commit

Permalink
add cypress workaround?
Browse files Browse the repository at this point in the history
  • Loading branch information
mojotalantikite committed Aug 21, 2023
1 parent 828a966 commit 8c501ec
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/get-changed-services/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ async function main() {
return
}

// force just a cypress re-run
if (commitMessage.includes('cypress re-run')) {
core.setOutput('changed-services', [])
return
}

// if we haven't had a run on this branch, we need to deploy everything
if (allWorkflowRuns.data.total_count === 0) {
core.setOutput('changed-services', deployAllServices)
Expand Down

0 comments on commit 8c501ec

Please sign in to comment.