You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci(publish): switch trigger from pull_request to push
The pull_request event sets GITHUB_REF to refs/pull/N/merge,
which doesn't match the release environment's branch policy
(main, create-pull-request/patch), causing the publish job
to be rejected before execution with no logs.
Switching to push trigger on main so GITHUB_REF is
refs/heads/main, which satisfies the branch policy.
- Replace pull_request closed trigger with push to main
- Gate build job on commit message starting with 'Release '
- Remove PR-specific env vars and checks from release_check
0 commit comments