Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | 4x | /**
* @deprecated No longer used by scs.js — the target branch is now a core-XXX-patch
* branch provided via config/prompt instead of derived from an isPatch flag.
* Kept for backward compatibility in case other scripts import it.
*
* @param {boolean} isPatch - Whether this is a patch release
* @returns {string} - 'master-patch' if isPatch is truthy, 'master' otherwise
*/
export function getTargetBranch(isPatch) {
return isPatch ? 'master-patch' : 'master';
}
|