diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index c5f9d5e824..2701817e38 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -1,8 +1,8 @@ name: daily on: workflow_dispatch: - schedule: - - cron: '42 0 * * *' # daily at 00:42 + # Scheduled publishing is paused until npm trusted publishing and durable + # package ownership are configured. Keep manual dispatch for verification. concurrency: group: ${{ github.workflow }} cancel-in-progress: true diff --git a/.gitmodules b/.gitmodules index 746c9e5b72..110b2dcac0 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "ci/sub"] path = ci/sub - url = https://github.com/terrastruct/ci + url = https://github.com/d2lang/ci diff --git a/ci/release/changelogs/v0.2.5.md b/ci/release/changelogs/v0.2.5.md index 8897c9d24e..b2d157d401 100644 --- a/ci/release/changelogs/v0.2.5.md +++ b/ci/release/changelogs/v0.2.5.md @@ -23,6 +23,6 @@ Customizations and layouts take a big leap forward with this release! Put togeth #### Bugfixes ⛑️ -- Fixes `d2` erroring on malformed user paths (`fdopendir` error). [util-go#10](https://github.com/terrastruct/util-go/pull/10) +- Fixes `d2` erroring on malformed user paths (`fdopendir` error). [util-go#10](https://github.com/d2lang/util-go/pull/10) - Arrowhead labels being set without maps wasn't being picked up. [#1015](https://github.com/terrastruct/d2/pull/1015) - Fixes a `dagre` layout error with connections to a container shape with a blockstring label. [#1032](https://github.com/terrastruct/d2/pull/1032) diff --git a/ci/sub b/ci/sub index 2594100ac9..d5e5281fa7 160000 --- a/ci/sub +++ b/ci/sub @@ -1 +1 @@ -Subproject commit 2594100ac939644f134e24edac7c9bcd569b99f6 +Subproject commit d5e5281fa7805b1879fe446d81b575de4e91b184 diff --git a/d2cli/main.go b/d2cli/main.go index 614fd41af5..b6475bfbe5 100644 --- a/d2cli/main.go +++ b/d2cli/main.go @@ -302,7 +302,7 @@ func Run(ctx context.Context, ms *xmain.State) (err error) { } if *darkThemeFlag == -1 { - darkThemeFlag = nil // TODO this is a temporary solution: https://github.com/terrastruct/util-go/issues/7 + darkThemeFlag = nil // TODO this is a temporary solution: https://github.com/d2lang/util-go/issues/7 } if darkThemeFlag != nil { match = d2themescatalog.Find(*darkThemeFlag) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 642f2650e0..3d57741161 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -38,7 +38,7 @@ interested in, etc). ## CI Most of D2's CI is open sourced in its own -[repository](https://github.com/terrastruct/ci), included as a submodule. After you clone +[repository](https://github.com/d2lang/ci), included as a submodule. After you clone D2, make sure you initialize the submodules: ```sh diff --git a/install.sh b/install.sh index 619b70ba1f..6e8497fc76 100755 --- a/install.sh +++ b/install.sh @@ -377,7 +377,7 @@ LIB_FLAG=1 # interpreted as a single -xyzq flag. The other deficiency is lack of support for short # flag syntax like -carg where the arg is not separated from the flag. This one is # unfixable I believe unfortunately but for combined short flags I have opened -# https://github.com/terrastruct/ci/issues/6 +# https://github.com/d2lang/ci/issues/6 # # flag_parse stores state in $FLAG, $FLAGRAW, $FLAGARG and $FLAGSHIFT. # FLAG contains the name of the flag without hyphens.