From 1e3bf8b59bc2564252f8538bc7893d9f76a37bfb Mon Sep 17 00:00:00 2001 From: Tejas Kashinath Date: Fri, 4 Sep 2026 14:09:13 -0400 Subject: [PATCH] ci(release): placeholder release-prepare workflow so refactor's can be dispatched --- .github/workflows/release-prepare.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release-prepare.yml diff --git a/.github/workflows/release-prepare.yml b/.github/workflows/release-prepare.yml new file mode 100644 index 000000000..e5b9b1057 --- /dev/null +++ b/.github/workflows/release-prepare.yml @@ -0,0 +1,19 @@ +# Placeholder. The real release-prepare workflow lives on the refactor branch. +# +# GitHub only lists a workflow in the Actions UI and the dispatch API if a file with its name exists on +# the default branch. Selecting "refactor" in the branch picker runs refactor's release-prepare.yml with +# refactor's inputs. Selecting "main" runs this file, which refuses so nothing happens to main. +# +# Delete this file when refactor lands on main and brings the real workflow with it. +name: release-prepare + +on: + workflow_dispatch: + +jobs: + refuse: + runs-on: ubuntu-latest + steps: + - run: | + echo "::error::release-prepare only exists on the refactor branch. Re-run with 'refactor' selected in the branch picker." + exit 1