Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/release-prepare.yml
Original file line number Diff line number Diff line change
@@ -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
Loading