fix(vc & charts): keep vc open on sidebar close & update LCLK_DEP_1 #69
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Enforce Canary as PR Source | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| branches: [main, canary] | |
| jobs: | |
| check-branch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Ensure PR source is canary | |
| run: | | |
| if [[ "${{ github.base_ref }}" == "main" && "${{ github.head_ref }}" != "canary" ]]; then | |
| echo "PRs to main must originate from the canary branch." | |
| exit 1 | |
| fi | |
| echo "PR source is valid for the target branch." |