code-foundry 0.31.15 → 0.31.16

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.
@@ -4,7 +4,7 @@ on:
4
4
  push:
5
5
  branches: [main, staging]
6
6
  pull_request:
7
- branches: [staging]
7
+ branches: [main, staging]
8
8
  workflow_dispatch:
9
9
 
10
10
  permissions:
@@ -4,7 +4,7 @@ on:
4
4
  push:
5
5
  branches: [main, staging]
6
6
  pull_request:
7
- branches: [staging]
7
+ branches: [main, staging]
8
8
  schedule:
9
9
  - cron: '31 6 * * 1'
10
10
  workflow_dispatch:
@@ -2,7 +2,7 @@ name: Code Foundry
2
2
 
3
3
  on:
4
4
  pull_request:
5
- branches: [staging]
5
+ branches: [main, staging]
6
6
  workflow_dispatch:
7
7
 
8
8
  permissions:
@@ -8,11 +8,8 @@ on:
8
8
  workflow_dispatch:
9
9
 
10
10
  permissions:
11
- actions: read
12
11
  contents: read
13
12
  pull-requests: write
14
- packages: read
15
- security-events: write
16
13
 
17
14
  jobs:
18
15
  release-pr:
@@ -25,44 +22,3 @@ jobs:
25
22
  with:
26
23
  runner: ubuntu-slim
27
24
  secrets: inherit
28
-
29
- ci:
30
- if: github.event_name == 'pull_request' && startsWith(github.head_ref, 'release-please--branches--main')
31
- name: CI
32
- uses: ./.github/workflows/ci.yml
33
- with:
34
- runtime-repository: 0xPlayerOne/code-foundry
35
- runtime-ref: ${{ github.sha }}
36
- runner: ubuntu-latest
37
- secrets: inherit
38
-
39
- test:
40
- if: github.event_name == 'pull_request' && startsWith(github.head_ref, 'release-please--branches--main')
41
- name: Test
42
- uses: ./.github/workflows/test.yml
43
- with:
44
- runtime-repository: 0xPlayerOne/code-foundry
45
- runtime-ref: ${{ github.sha }}
46
- runner: ubuntu-latest
47
- unit-runner: ubuntu-slim
48
- secrets: inherit
49
-
50
- security:
51
- if: github.event_name == 'pull_request' && startsWith(github.head_ref, 'release-please--branches--main')
52
- name: Security
53
- uses: ./.github/workflows/security.yml
54
- with:
55
- runtime-repository: 0xPlayerOne/code-foundry
56
- runtime-ref: ${{ github.sha }}
57
- runner: ubuntu-slim
58
- secrets: inherit
59
-
60
- codeql:
61
- if: github.event_name == 'pull_request' && startsWith(github.head_ref, 'release-please--branches--main')
62
- name: CodeQL
63
- uses: ./.github/workflows/codeql.yml
64
- with:
65
- runtime-repository: 0xPlayerOne/code-foundry
66
- runtime-ref: ${{ github.sha }}
67
- runner: ubuntu-latest
68
- secrets: inherit
@@ -4,7 +4,7 @@ on:
4
4
  push:
5
5
  branches: [main, staging]
6
6
  pull_request:
7
- branches: [staging]
7
+ branches: [main, staging]
8
8
  workflow_dispatch:
9
9
 
10
10
  permissions:
@@ -4,7 +4,7 @@ on:
4
4
  push:
5
5
  branches: [main, staging]
6
6
  pull_request:
7
- branches: [staging]
7
+ branches: [main, staging]
8
8
  workflow_dispatch:
9
9
 
10
10
  permissions:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.31.16](https://github.com/0xPlayerOne/code-foundry/compare/v0.31.15...v0.31.16) (2026-07-30)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **release:** avoid duplicate release PR checks ([42d7354](https://github.com/0xPlayerOne/code-foundry/commit/42d735404cd7b77d5a30a03a4fb8856096e931b0))
9
+ * **workflows:** validate main promotion PRs ([4f41f90](https://github.com/0xPlayerOne/code-foundry/commit/4f41f90a3e4a5eec8e80d46c21083c1380655341))
10
+
3
11
  ## [0.31.15](https://github.com/0xPlayerOne/code-foundry/compare/v0.31.14...v0.31.15) (2026-07-30)
4
12
 
5
13
 
package/docs/WORKFLOWS.md CHANGED
@@ -8,7 +8,7 @@ The default standard callers use:
8
8
  push:
9
9
  branches: [main, staging]
10
10
  pull_request:
11
- branches: [staging]
11
+ branches: [main, staging]
12
12
  ```
13
13
 
14
14
  Draft PR automation may additionally listen to supported topic branches.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.31.15",
3
+ "version": "0.31.16",
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",