Skip to content

Commit a4b47df

Browse files
authored
Merge pull request #4454 from ralfhandl/main-adjust-release-branch
main: helper script for preparing a release branch
2 parents 930f40b + b1f703f commit a4b47df

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CONTRIBUTING.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ The steps for creating a `vX.Y.Z-rel` branch are:
201201

202202
1. Update `EDITORS.md` on `main`
203203
2. Merge `main` into `dev` and `dev` into `vX.Y-dev` via PRs
204-
- Sync PRs are automatically created by workflows `sync-main-to-dev` and `sync-dev-to-vX.Y-dev`
204+
- sync PRs are automatically created by workflows `sync-main-to-dev` and `sync-dev-to-vX.Y-dev`
205205
3. Prepare spec files in `vX.Y-dev`
206206
- `npm run format-markdown`
207207
- `npm run build-src`
@@ -213,6 +213,7 @@ The steps for creating a `vX.Y.Z-rel` branch are:
213213
- copy `EDITORS.md` to `versions/X.Y.Z-editors.md`
214214
- delete `src/schemas`
215215
- delete `tests/schema`
216+
- bash script `scripts/adjust-release-branch.sh` performs these steps
216217
5. Merge `vX.Y.Z-rel` into `main` via PR
217218
- this PR should only add files `versions/X.Y.Z.md` and `versions/X.Y.Z-editors.md`
218219

scripts/adjust-release-branch.sh

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env bash
2+
3+
# Author: @ralfhandl
4+
5+
# Run this script from the root of the repo. It is designed to be run manually in a release branch.
6+
7+
branch=$(git branch --show-current)
8+
9+
if [[ ! $branch =~ ^v[0-9]+\.[0-9]+\.[0-9]+-rel$ ]]; then
10+
echo "This script is intended to be run from a release branch, e.g. v3.1.2-rel"
11+
exit 1
12+
fi
13+
14+
vVersion=$(basename "$branch" "-rel")
15+
version=${vVersion:1}
16+
echo Prepare release of $version
17+
18+
cp EDITORS.md versions/$version-editors.md
19+
mv src/oas.md versions/$version.md
20+
rm -r src/schemas
21+
rm -r tests/schema

0 commit comments

Comments
 (0)