From 3aa1497ddde794537639d2623230a747e7c33ccc Mon Sep 17 00:00:00 2001 From: martin veillette Date: Sat, 15 Aug 2026 15:14:29 -0400 Subject: [PATCH] ci: allow manual Pages deploys and sync Dependabot config Match CrystalLattice's workflow_dispatch trigger so a missed push can be recovered by hand, and copy Baton's canonical dependabot.yml. --- .github/workflows/deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 910486b..e87506e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,6 +3,10 @@ name: Deploy on: push: branches: [main] + # Manual dispatch, so the site can be published without waiting for a push and + # so a deploy that never fired can be recovered by hand. Matches Baton's own + # pages.yml, which carries the same pair of triggers. + workflow_dispatch: concurrency: group: pages-${{ github.ref }}