code-foundry 0.34.6 → 0.34.7
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/workflows/release-pr.yml +10 -0
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
|
@@ -37,6 +37,16 @@ jobs:
|
|
|
37
37
|
fetch-depth: 0
|
|
38
38
|
filter: blob:none
|
|
39
39
|
|
|
40
|
+
- name: Configure git auth for blob fetch
|
|
41
|
+
# The partial clone (filter: blob:none) defers blob downloads, so the
|
|
42
|
+
# merge-base/diff comparison below can trigger a promisor fetch. With
|
|
43
|
+
# persist-credentials disabled, git has no auth for that fetch; configure
|
|
44
|
+
# the credential helper with the same token the Check step uses. The token
|
|
45
|
+
# is scoped to contents: read, so this never enables write credentials.
|
|
46
|
+
env:
|
|
47
|
+
GH_TOKEN: ${{ secrets.CODE_FOUNDRY_TOKEN || secrets.RELEASE_PLEASE_TOKEN || github.token }}
|
|
48
|
+
run: gh auth setup-git
|
|
49
|
+
|
|
40
50
|
- name: Check
|
|
41
51
|
id: check-pr
|
|
42
52
|
env:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.34.7](https://github.com/0xPlayerOne/code-foundry/compare/v0.34.6...v0.34.7) (2026-08-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **release:** authenticate partial clone comparisons ([172dfbe](https://github.com/0xPlayerOne/code-foundry/commit/172dfbef53ab1a9eee44cf68f648889ae99b93b1))
|
|
9
|
+
|
|
3
10
|
## [0.34.6](https://github.com/0xPlayerOne/code-foundry/compare/v0.34.5...v0.34.6) (2026-08-02)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED