Skip to content

Commit f7b146d

Browse files
Merge pull request #6567 from rescript-lang/add_ci_to_release_branch
Add CI to release branch
2 parents f64a642 + 612fc40 commit f7b146d

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: CI
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [master, 11.0_release]
66
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
77
tags:
88
- "v[0-9]+.[0-9]+.[0-9]+"
99
- "v[0-9]+.[0-9]+.[0-9]+-*"
1010

1111
pull_request:
12-
branches: [master]
12+
branches: [master, 11.0_release]
1313

1414
concurrency:
1515
group: ci-${{ github.ref }}-1

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,13 @@ Javascript Code
351351

352352
Note that there is one design goal to keep in mind, never introduce any meaningless symbol unless necessary, we do optimizations, however, it should also compile readable output code.
353353

354+
## PR target branch
355+
356+
Target branch `master` for development of new (breaking) features (v12).
357+
358+
Bug fixes and maintenance should target branch `11.0_release`.
359+
We'll merge `11.0_release` into `master` from time to time to propagate those changes.
360+
354361
## Release Process
355362

356363
To build a new version and release it on NPM, follow these steps:

packages/std/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
"url": "https://github.com/rescript-compiler/issues"
2424
},
2525
"homepage": "http://rescript-lang.org"
26-
}
26+
}

0 commit comments

Comments
 (0)