fix(catalog): remove retired push-window rule from release output
The "weekday 20-23" push window is retired; the release helper still told the operator to observe it at the exact moment it pushed. Two lines, one file — ordre 20260818T145115Z-1170729223-from-voyage. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013nUcNMXucyztssywSaHnoq
This commit is contained in:
parent
ad9723078c
commit
bb693454ab
1 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@
|
|||
// # (--create-tag is a WRITE: without --write it only reports)
|
||||
// node scripts/release-plugin.mjs <name> --write # write the bumped catalog ref
|
||||
// node scripts/release-plugin.mjs <name> --write --commit # + git commit the catalog
|
||||
// node scripts/release-plugin.mjs <name> --write --commit --push # + push (you own the push window)
|
||||
// node scripts/release-plugin.mjs <name> --write --commit --push # + push
|
||||
|
||||
import { readFileSync, writeFileSync, existsSync } from 'node:fs';
|
||||
import { execFileSync } from 'node:child_process';
|
||||
|
|
@ -287,7 +287,7 @@ function main() {
|
|||
execFileSync('git', ['-C', catalogDir, 'commit', '-m', msg], { stdio: 'inherit' });
|
||||
console.log(' ✓ committed the catalog');
|
||||
if (args.push) {
|
||||
console.log(' → pushing (you own the push window: weekday 20–23, weekend/holiday anytime)');
|
||||
console.log(' → pushing');
|
||||
execFileSync('git', ['-C', catalogDir, 'push', 'origin', 'HEAD'], { stdio: 'inherit' });
|
||||
console.log(' ✓ pushed');
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue