Skip to content

Commit

Permalink
workflow experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
NickRimmer committed Nov 14, 2024
1 parent e00cdb9 commit 26208a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pr-scheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@ jobs:
}
}
core.setOutput("prs_to_validate", JSON.stringify(prNumbers));
console.log(`PRs to validate: ${JSON.stringify(prNumbers)}`);
trigger_validation:
needs: check_prs
if: ${{ needs.check_prs.outputs.prs_to_validate != '[]' }}
if: ${{ needs.check_prs.outputs.prs_to_validate && needs.check_prs.outputs.prs_to_validate != '[]' }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit 26208a7

Please sign in to comment.