You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CONTRIBUTING.md
+48Lines changed: 48 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -199,3 +199,51 @@ one or more reviewers making new comments every time, then waiting for an
199
199
updated change before reviewing again. All contributors, including those from
200
200
maintainers, are subject to the same review cycle; this process is not meant to
201
201
be applied selectively or to discourage anyone from contributing.
202
+
203
+
## Releases
204
+
205
+
Coder releases are automated via GitHub Actions. Specifically, the
206
+
[`release.yaml`](../.github/workflows/release.yaml) workflow. They are created
207
+
based on the current [`main`](https://github.com/coder/coder/tree/main) branch.
208
+
209
+
The release notes for a release are automatically generated from commit titles
210
+
and metadata from PRs that are merged into `main`.
211
+
212
+
### Creating a release (script)
213
+
214
+
The preferred way to create a release is to use [`./scripts/release.sh`](../scripts/release.sh). This script will show a preview of the release that _would_ be created and if you choose to continue, automatically run and watch the release workflow for you.
215
+
216
+
See `./scripts/release.sh --help` for more information.
217
+
218
+
### Creating a release (workflow dispatch)
219
+
220
+
Alternatively, the workflow can be dispatched manually from [Actions: Release](https://github.com/coder/coder/actions/workflows/release.yaml). Simply press "Run workflow" and set your preferred inputs.
221
+
222
+
### Commit messages
223
+
224
+
Commit messages should follow the [Conventional Commits 1.0.0](https://www.conventionalcommits.org/en/v1.0.0/) specification.
225
+
226
+
Allowed commit types (`feat`, `fix`, etc.) are listed in [conventional-commit-types](https://github.com/commitizen/conventional-commit-types/blob/c3a9be4c73e47f2e8197de775f41d981701407fb/index.json). Note that these types are also used to automatically sort and organize the release notes.
227
+
228
+
A good commit message title uses the imperative, present tense and is ~50
229
+
characters long (no more than 72).
230
+
231
+
Examples:
232
+
233
+
- Good: `feat(api): Add feature X`
234
+
- Bad: `feat(api): Added feature X` (past tense)
235
+
236
+
A good rule of thumb for writing good commit messages is to recite: [If applied, this commit will ...](https://reflectoring.io/meaningful-commit-messages/).
237
+
238
+
**Note:** We lint PR titles to ensure they follow the Conventional Commits specification, however, it's still possible to merge PRs on GitHub with a badly formatted title. Take care when merging single-commit PRs as GitHub may prefer to use the original commit title instead of the PR title.
239
+
240
+
### Breaking changes
241
+
242
+
Breaking changes can be triggered in two ways:
243
+
244
+
- Add `!` to the commit message title, e.g. `feat(api)!: Remove deprecated endpoint /test`
245
+
- Add the [`release/breaking`](https://github.com/coder/coder/issues?q=sort%3Aupdated-desc+label%3Arelease%2Fbreaking) label to a PR that has, or will be, merged into `main`.
246
+
247
+
### Security
248
+
249
+
The [`security`](https://github.com/coder/coder/issues?q=sort%3Aupdated-desc+label%3Asecurity) label can be added to PRs that have, or will be, merged into `main`. Doing so will make sure the change stands out in the release notes.
0 commit comments