Skip to content

Tags: tsok-org/.github

Tags

v5

Toggle v5's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
v5: self-hosted Nx remote cache (replaces @nx/s3-cache)

v1

Toggle v1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
feat(nx-migrate): accept runs_on input

Adds a `runs_on` input (default `ubuntu-latest` for backwards
compat) so self-hosted callers can route the scheduled migration
job onto their own pool instead of hitting GitHub Actions
billing.

v4.0.6

Toggle v4.0.6's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
feat: opt into Node 24 for JS actions

v4.0.5

Toggle v4.0.5's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
feat: auto-detect Rust workspace when no .environment.yml

v4.0.4

Toggle v4.0.4's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
fix: cargo-nextest install ungated on host mode

v4.0.3

Toggle v4.0.3's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
feat: host-mode cargo-nextest install

v4.0.2

Toggle v4.0.2's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
fix: comment expression collision

v4.0.1

Toggle v4.0.1's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
fix: rust-cache only on github-hosted runners

v4.0.0

Toggle v4.0.0's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
v4.0.0 — plan + shard topology for OSS distributed CI

v4

Toggle v4's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix(nx-ci): cache mode expression always returned read-only

`(cond) && '' || 'read-only'` evaluates as `(cond ? '' : 'read-only') || 'read-only'`
in GitHub expressions, and `'' || x` always returns x. Result: every run
— even pushes/schedule/dispatch on trusted refs — got read-only S3 cache
and never wrote. The CREEP CVE mitigation was over-applying.

Swap the truthy branch from empty to the literal "read-write" so the
conditional behaves as if/else. The @nx/s3-cache plugin treats any
non-"read-only" value as read+write.