From e6b2dc56b7f23d9ce75af454f3e2636f0ce7c445 Mon Sep 17 00:00:00 2001 From: Maurice Schmicking Date: Fri, 7 Aug 2026 23:57:27 +0200 Subject: [PATCH] ci: allow release-please to be run on demand release-please is silent when there is nothing to release, which is indistinguishable from it being misconfigured. Adding workflow_dispatch makes that state checkable without pushing a commit. Co-Authored-By: Claude Opus 5 --- .github/workflows/release-please.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index c823dd7..70903c4 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -10,6 +10,10 @@ name: Release PR on: push: branches: [master] + # Lets a run be forced without pushing. Useful because release-please is silent by + # design when there is nothing to release — dispatching it and reading the log is + # the only way to tell "working, nothing to do" apart from "misconfigured". + workflow_dispatch: permissions: contents: write