code-foundry 0.13.0 → 0.14.0
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/.github/scripts/doctor.sh +3 -1
- package/.github/scripts/sync-template.sh +0 -6
- package/CHANGELOG.md +7 -0
- package/README.md +5 -0
- package/package.json +1 -1
|
@@ -91,10 +91,12 @@ for workflow in ci codeql security test draft-pr release-pr release; do
|
|
|
91
91
|
fi
|
|
92
92
|
done
|
|
93
93
|
|
|
94
|
-
for script in ci.sh
|
|
94
|
+
for script in ci.sh profile.sh doctor.sh bootstrap.sh sync-template.sh init-repo.sh sync-protection.sh sync-codeowners.sh; do
|
|
95
95
|
[ -x ".github/scripts/$script" ] || error "missing executable script: .github/scripts/$script"
|
|
96
96
|
done
|
|
97
97
|
|
|
98
|
+
printf '%s\n' 'Remote CI, Test, Security, and CodeQL runtimes are loaded by reusable workflow wrappers.'
|
|
99
|
+
|
|
98
100
|
if [ "$errors" -gt 0 ]; then
|
|
99
101
|
printf '%s\n' "Repository doctor found $errors error(s)." >&2
|
|
100
102
|
exit 1
|
|
@@ -243,17 +243,11 @@ files=(
|
|
|
243
243
|
.github/ISSUE_TEMPLATE/bug_report.yml
|
|
244
244
|
.github/ISSUE_TEMPLATE/config.yml
|
|
245
245
|
.github/ISSUE_TEMPLATE/feature_request.yml
|
|
246
|
-
.github/actions/setup/action.yml
|
|
247
|
-
.github/actions/cache/action.yml
|
|
248
|
-
.github/actions/codeql/action.yml
|
|
249
246
|
.github/scripts/profile.sh
|
|
250
247
|
.github/scripts/bootstrap.sh
|
|
251
248
|
.github/scripts/changed-files.sh
|
|
252
249
|
.github/scripts/ci.sh
|
|
253
|
-
.github/scripts/codeql-languages.sh
|
|
254
250
|
.github/scripts/doctor.sh
|
|
255
|
-
.github/scripts/security.sh
|
|
256
|
-
.github/scripts/sitecustomize.py
|
|
257
251
|
.github/scripts/pre-commit.sh
|
|
258
252
|
.github/scripts/sync-template.sh
|
|
259
253
|
.github/scripts/init-repo.sh
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.14.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.13.0...v0.14.0) (2026-07-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **init:** minimize consumer workflow footprint ([4427c1f](https://github.com/0xPlayerOne/code-foundry/commit/4427c1f964c3a0dc6ffe080ea3779ad2b8a1d170))
|
|
9
|
+
|
|
3
10
|
## [0.13.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.12.0...v0.13.0) (2026-07-28)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -42,6 +42,11 @@ the selected repository is saved in `.github/template.yml` and rendered into
|
|
|
42
42
|
the small `ci.yml` and `test.yml` wrappers automatically. The equivalent
|
|
43
43
|
environment variable is `REPO_FOUNDRY_RUNTIME_REPOSITORY`.
|
|
44
44
|
|
|
45
|
+
Normal synchronization imports only the local hook, agent-facing command,
|
|
46
|
+
profile/release, initializer, doctor, ownership, and protection entrypoints.
|
|
47
|
+
Workflow-only actions and Security/CodeQL analyzers stay in the versioned
|
|
48
|
+
runtime package and are not duplicated in consumer repositories.
|
|
49
|
+
|
|
45
50
|
The standard Security wrapper uses the same runtime contract, so dependency
|
|
46
51
|
audits and the public-only Dependency Review policy can be upgraded centrally
|
|
47
52
|
without copying security scripts into every consumer repository.
|
package/package.json
CHANGED