From 690a83827865554b83e09b8d79c9ac003e12b768 Mon Sep 17 00:00:00 2001 From: plutoless Date: Thu, 11 Jun 2026 04:36:19 -0700 Subject: [PATCH 1/2] ci: allow ci.yml to be reused via workflow_call --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abecb8f..56b2aeb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ name: CI on: push: pull_request: + workflow_call: jobs: backend: From 2bec437c7a06eb5ad6cd624dc616ca2899198094 Mon Sep 17 00:00:00 2001 From: plutoless Date: Thu, 11 Jun 2026 04:36:19 -0700 Subject: [PATCH 2/2] ci: add daily nightly that reruns tests + docker build --- .github/workflows/nightly.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/nightly.yml diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml new file mode 100644 index 0000000..dcf2531 --- /dev/null +++ b/.github/workflows/nightly.yml @@ -0,0 +1,17 @@ +name: nightly + +on: + schedule: + - cron: "0 18 * * *" # 18:00 UTC daily + workflow_dispatch: # manual trigger (only available once on the default branch) + +permissions: + contents: read + packages: write # mirrors docker.yml; unused on the no-push nightly path + +jobs: + tests: + uses: ./.github/workflows/ci.yml + + docker: + uses: ./.github/workflows/docker.yml