code-foundry 0.20.0 → 0.20.1
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/sync-template.sh +1 -1
- package/.github/workflows/ci.yml +2 -2
- package/.github/workflows/codeql.yml +2 -2
- package/.github/workflows/draft-pr.yml +1 -1
- package/.github/workflows/release-pr.yml +1 -1
- package/.github/workflows/release.yml +1 -1
- package/.github/workflows/reusable-ci.yml +1 -1
- package/.github/workflows/reusable-codeql.yml +1 -1
- package/.github/workflows/reusable-security.yml +1 -1
- package/.github/workflows/reusable-test.yml +1 -1
- package/.github/workflows/security.yml +2 -2
- package/.github/workflows/test.yml +2 -2
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
|
@@ -378,7 +378,7 @@ if [ -f "$template_root/.github/template.yml" ]; then
|
|
|
378
378
|
source_runtime_repository="$(awk -F': ' '/^runtime_repository:/ {print $2; exit}' "$template_root/.github/template.yml")"
|
|
379
379
|
fi
|
|
380
380
|
[ -n "$source_runtime_repository" ] || source_runtime_repository="0xPlayerOne/code-foundry"
|
|
381
|
-
for file in .github/workflows/ci.yml .github/workflows/test.yml .github/workflows/security.yml .github/workflows/codeql.yml .github/workflows/draft-pr.yml .github/workflows/release-pr.yml; do
|
|
381
|
+
for file in .github/workflows/ci.yml .github/workflows/test.yml .github/workflows/security.yml .github/workflows/codeql.yml .github/workflows/draft-pr.yml .github/workflows/release-pr.yml .github/workflows/release.yml; do
|
|
382
382
|
[ -f "$file" ] || continue
|
|
383
383
|
if grep -qF "$source_runtime_repository" "$file" && [ "$source_runtime_repository" != "$runtime_repository" ]; then
|
|
384
384
|
changed=$((changed + 1))
|
package/.github/workflows/ci.yml
CHANGED
|
@@ -13,8 +13,8 @@ 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.20.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.20.0
|
|
20
20
|
secrets: inherit
|
|
@@ -18,8 +18,8 @@ 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.20.0
|
|
22
22
|
with:
|
|
23
23
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
24
|
-
runtime-ref: v0.
|
|
24
|
+
runtime-ref: v0.20.0
|
|
25
25
|
secrets: inherit
|
|
@@ -13,8 +13,8 @@ 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.20.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.20.0
|
|
20
20
|
secrets: inherit
|
|
@@ -13,8 +13,8 @@ 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.20.0
|
|
17
17
|
with:
|
|
18
18
|
runtime-repository: 0xPlayerOne/code-foundry
|
|
19
|
-
runtime-ref: v0.
|
|
19
|
+
runtime-ref: v0.20.0
|
|
20
20
|
secrets: inherit
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.20.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.20.0...v0.20.1) (2026-07-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **workflows:** align callers with current runtime ([11629d3](https://github.com/0xPlayerOne/code-foundry/commit/11629d32b4c41a8bfd1ff8fdaa5638c43236e889))
|
|
9
|
+
* **workflows:** correct release caller indentation ([2688ca9](https://github.com/0xPlayerOne/code-foundry/commit/2688ca924552c9537151e76f486f6485bd4fb0d9))
|
|
10
|
+
|
|
3
11
|
## [0.20.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.19.0...v0.20.0) (2026-07-28)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED