Skip to content

fix(vc & charts): keep vc open on sidebar close & update LCLK_DEP_1 #69

fix(vc & charts): keep vc open on sidebar close & update LCLK_DEP_1

fix(vc & charts): keep vc open on sidebar close & update LCLK_DEP_1 #69

Workflow file for this run

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."