@i-santos/create-package-starter 1.5.0-beta.3 → 1.5.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/run.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -136,7 +136,7 @@ If `gh` is missing or unauthenticated, command exits non-zero with actionable gu
|
|
|
136
136
|
- creates/preserves `.github/workflows/ci.yml` with beta+stable branch triggers
|
|
137
137
|
- ensures `release/beta` branch exists remotely (created from default branch if missing)
|
|
138
138
|
- applies beta branch protection ruleset on GitHub (including required CI matrix checks for Node 18 and 20)
|
|
139
|
-
- applies beta branch protection ruleset on GitHub with stable required check context (`
|
|
139
|
+
- applies beta branch protection ruleset on GitHub with stable required check context (`required-check`)
|
|
140
140
|
- asks for confirmation before mutating repository settings and again before overwriting existing beta ruleset
|
|
141
141
|
- supports safe-merge by default and `--force` overwrite
|
|
142
142
|
- supports configurable beta branch (`release/beta` by default)
|
package/lib/run.js
CHANGED
|
@@ -8,7 +8,7 @@ const CHANGESETS_DEP_VERSION = '^2.29.7';
|
|
|
8
8
|
const DEFAULT_BASE_BRANCH = 'main';
|
|
9
9
|
const DEFAULT_BETA_BRANCH = 'release/beta';
|
|
10
10
|
const DEFAULT_RULESET_NAME = 'Default main branch protection';
|
|
11
|
-
const REQUIRED_CHECK_CONTEXT = '
|
|
11
|
+
const REQUIRED_CHECK_CONTEXT = 'required-check';
|
|
12
12
|
|
|
13
13
|
const MANAGED_FILE_SPECS = [
|
|
14
14
|
['.changeset/config.json', '.changeset/config.json'],
|
package/package.json
CHANGED