Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
body="$(mktemp)"
commits="$(mktemp)"
if [[ -n "$PREVIOUS_TAG" ]]; then
git log --first-parent --pretty=format:'- %s (`%h`)' "$PREVIOUS_TAG..origin/main" > "$commits"
git log --pretty=format:'- %s (`%h`)' "$PREVIOUS_TAG..origin/main" > "$commits"
else
echo "- No previous stable tag found." > "$commits"
fi
Expand Down
2 changes: 2 additions & 0 deletions FORK.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This repository is a fork of `pingdotgg/t3code`. Keep this file focused on fork
### Release And CI

- Fork workflows create/update a daily stable release PR while main-branch pushes produce nightly releases.
- Stable release PRs list every commit since the previous stable tag, including commits brought in by upstream merges.
- Release PR preparation runs after release publication so tag-based version resolution sees the latest release.
- Release build jobs skip relay client tracing config because the relay config job is disabled.
- Release builds publish updater metadata against the fork repository.
Expand All @@ -22,6 +23,7 @@ This repository is a fork of `pingdotgg/t3code`. Keep this file focused on fork
- macOS passkey entitlements are only enabled when Apple notarization/profile configuration is present.
- Windows releases can sign with the static certificate when Azure Trusted Signing is not configured.
- Fork GitHub Actions jobs use GitHub-hosted runners instead of upstream private or third-party runner pools.
- Fork test runs limit package task concurrency to two to avoid starving tests on GitHub-hosted runners.
- Web dist release archives are built as hosted static apps and carry the release channel.

### Nix Package
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"tc": "vp run -r --concurrency-limit 2 typecheck",
"lint": "vp lint --report-unused-disable-directives",
"lint:mobile": "node scripts/mobile-native-static-check.ts",
"test": "vp run -r test",
"test": "vp run -r --concurrency-limit 2 test",
"test:desktop-smoke": "vp run --filter @t3tools/desktop smoke-test",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
Expand Down
Loading