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.
@@ -6,7 +6,7 @@ languages: typescript
6
6
  features: all
7
7
  package_manager: bun
8
8
  runtime_repository: 0xPlayerOne/code-foundry
9
- runtime_ref: v0.20.2
9
+ runtime_ref: v0.22.0
10
10
  release_type: node
11
11
  npm_publish: true
12
12
  license: agpl-3.0-or-later
@@ -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
@@ -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.20.2
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.20.2
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.20.2
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.20.2
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.20.2
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.20.2
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.20.2
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.20.2
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.20.2
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.20.2
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.20.2
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.22.0",
3
+ "version": "0.22.2",
4
4
  "description": "A fast, language-aware repository factory for agent-ready workflows, testing, security, and release automation.",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-or-later",
@@ -1,4 +0,0 @@
1
- # Temporary compatibility shim for reusable workflow runtime v0.20.2.
2
- # Removed after the runtime tag that understands .github/code-foundry.yml is published.
3
- package_manager: bun
4
- languages: typescript