code-foundry 0.22.0 → 0.22.2
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/code-foundry.yml +1 -1
- package/.github/scripts/init-repo.sh +5 -0
- package/.github/scripts/sync-template.sh +4 -0
- package/.github/workflows/ci.yml +3 -2
- package/.github/workflows/codeql.yml +3 -2
- package/.github/workflows/draft-pr.yml +3 -1
- package/.github/workflows/release-pr.yml +3 -1
- package/.github/workflows/release.yml +3 -1
- package/.github/workflows/security.yml +3 -2
- package/.github/workflows/test.yml +4 -2
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/.github/template.yml +0 -4
package/.github/code-foundry.yml
CHANGED
|
@@ -263,6 +263,11 @@ license="$(config_value license 2>/dev/null || true)"
|
|
|
263
263
|
printf 'turbo_remote: %s\n' "$turbo_remote"
|
|
264
264
|
} > .github/code-foundry.yml
|
|
265
265
|
|
|
266
|
+
if [ "$config_path" = .github/template.yml ] && [ -f .github/template.yml ]; then
|
|
267
|
+
rm .github/template.yml
|
|
268
|
+
printf '%s\n' 'Migrated .github/template.yml to .github/code-foundry.yml.'
|
|
269
|
+
fi
|
|
270
|
+
|
|
266
271
|
if [ "$bootstrap" = false ]; then
|
|
267
272
|
printf '%s\n' 'Bootstrap skipped.'
|
|
268
273
|
exit 0
|
|
@@ -702,6 +702,10 @@ if [ "$mode" = "apply" ]; then
|
|
|
702
702
|
printf 'license_file: %s\n' "$license_file"
|
|
703
703
|
fi
|
|
704
704
|
} > .github/code-foundry.yml
|
|
705
|
+
if [ "$config_path" = .github/template.yml ] && [ -f .github/template.yml ]; then
|
|
706
|
+
rm .github/template.yml
|
|
707
|
+
printf '%s\n' 'Migrated .github/template.yml to .github/code-foundry.yml.'
|
|
708
|
+
fi
|
|
705
709
|
fi
|
|
706
710
|
|
|
707
711
|
if [ "$prune" = true ]; then
|
package/.github/workflows/ci.yml
CHANGED
|
@@ -13,8 +13,9 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
ci:
|
|
15
15
|
name: CI
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-ci.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-ci.yml@v0.22.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.22.0
|
|
20
|
+
runner: ubuntu-latest
|
|
20
21
|
secrets: inherit
|
|
@@ -18,8 +18,9 @@ permissions:
|
|
|
18
18
|
jobs:
|
|
19
19
|
codeql:
|
|
20
20
|
name: CodeQL
|
|
21
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-codeql.yml@v0.
|
|
21
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-codeql.yml@v0.22.0
|
|
22
22
|
with:
|
|
23
23
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
24
|
-
runtime-ref: v0.
|
|
24
|
+
runtime-ref: v0.22.0
|
|
25
|
+
runner: ubuntu-latest
|
|
25
26
|
secrets: inherit
|
|
@@ -18,5 +18,7 @@ permissions:
|
|
|
18
18
|
jobs:
|
|
19
19
|
draft-pr:
|
|
20
20
|
name: Draft PR
|
|
21
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-draft-pr.yml@v0.
|
|
21
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-draft-pr.yml@v0.22.0
|
|
22
|
+
with:
|
|
23
|
+
runner: ubuntu-slim
|
|
22
24
|
secrets: inherit
|
|
@@ -11,5 +11,7 @@ permissions:
|
|
|
11
11
|
jobs:
|
|
12
12
|
release-pr:
|
|
13
13
|
name: Release PR
|
|
14
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-release-pr.yml@v0.
|
|
14
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-release-pr.yml@v0.22.0
|
|
15
|
+
with:
|
|
16
|
+
runner: ubuntu-slim
|
|
15
17
|
secrets: inherit
|
|
@@ -14,5 +14,7 @@ permissions:
|
|
|
14
14
|
jobs:
|
|
15
15
|
release:
|
|
16
16
|
name: Release
|
|
17
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-release.yml@v0.
|
|
17
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-release.yml@v0.22.0
|
|
18
|
+
with:
|
|
19
|
+
runner: ubuntu-slim
|
|
18
20
|
secrets: inherit
|
|
@@ -13,8 +13,9 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
security:
|
|
15
15
|
name: Security
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-security.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-security.yml@v0.22.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.22.0
|
|
20
|
+
runner: ubuntu-slim
|
|
20
21
|
secrets: inherit
|
|
@@ -13,8 +13,10 @@ permissions:
|
|
|
13
13
|
jobs:
|
|
14
14
|
test:
|
|
15
15
|
name: Test
|
|
16
|
-
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-test.yml@v0.
|
|
16
|
+
uses: 0xPlayerOne/code-foundry/.github/workflows/reusable-test.yml@v0.22.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.22.0
|
|
20
|
+
runner: ubuntu-latest
|
|
21
|
+
unit-runner: ubuntu-slim
|
|
20
22
|
secrets: inherit
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.22.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.1...v0.22.2) (2026-07-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove legacy config after migration ([839a4bd](https://github.com/0xPlayerOne/code-foundry/commit/839a4bd7d818633f1aef201b4a2b3292218563f4))
|
|
9
|
+
|
|
10
|
+
## [0.22.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.0...v0.22.1) (2026-07-28)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* pin callers to the canonical runtime ([321b93f](https://github.com/0xPlayerOne/code-foundry/commit/321b93fff2089ee61fa41f968ee584af864692b2))
|
|
16
|
+
|
|
3
17
|
## [0.22.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.21.2...v0.22.0) (2026-07-28)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
package/.github/template.yml
DELETED