Update L2-tests.yml#195
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Actions workflow that runs L2 integration tests on pull requests by modifying which target branches trigger the workflow.
Changes:
- Expanded the
pull_requestbase-branch filter to includefeature/dummy_L2in.github/workflows/L2-tests.yml.
| on: | ||
| pull_request: | ||
| branches: [ develop, main ] | ||
| branches: [ develop, main, feature/dummy_L2 ] |
There was a problem hiding this comment.
on.pull_request.branches filters the PR base branch (the branch being merged into), not the source branch. Adding feature/dummy_L2 will cause this workflow to run for PRs that target that branch; if the intent was to run L2 only when the PR comes from feature/dummy_L2 (or to keep running only for PRs into develop/main), this change won’t achieve that and may increase CI runs unexpectedly. Consider removing this branch from the trigger, or add a job-level condition using github.head_ref / github.base_ref to match the intended behavior.
| branches: [ develop, main, feature/dummy_L2 ] | |
| branches: [ develop, main ] |
No description provided.