Skip to content

Commit ad6a774

Browse files
Merge pull request #3228 from cdr/jsjoeio/refactor-board-milestone-workflow
docs(maintaining): use milestones over boards
2 parents bc3defd + d07317a commit ad6a774

File tree

3 files changed

+47
-1
lines changed

3 files changed

+47
-1
lines changed

ci/dev/fmt.sh

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ main() {
2727
doctoc --title '# Install' docs/install.md >/dev/null
2828
doctoc --title '# npm Install Requirements' docs/npm.md >/dev/null
2929
doctoc --title '# Contributing' docs/CONTRIBUTING.md >/dev/null
30+
doctoc --title '# Maintaining' docs/MAINTAINING.md >/dev/null
3031
doctoc --title '# Contributor Covenant Code of Conduct' docs/CODE_OF_CONDUCT.md >/dev/null
3132
doctoc --title '# iPad' docs/ipad.md >/dev/null
3233

docs/MAINTAINING.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
2+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
3+
# Maintaining
4+
5+
- [Maintaining](#maintaining)
6+
- [Workflow](#workflow)
7+
- [Milestones](#milestones)
8+
- [Project Boards](#project-boards)
9+
10+
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
11+
12+
# Maintaining
13+
14+
Current maintainers:
15+
16+
- @code-asher
17+
- @oxy
18+
- @jsjoeio
19+
20+
This document is meant to serve current and future maintainers of code-server, but also share openly our workflow for maintaining the project.
21+
22+
## Workflow
23+
24+
The workflow used by code-server maintainers is one that aims to be easy to understood by the community and easy enough for new maintainers to jump in and start contributing on day one.
25+
26+
### Milestones
27+
28+
We operate mainly using [milestones](https://github.com/cdr/code-server/milestones). This was heavily inspired by our friends over at [vscode](https://github.com/microsoft/vscode).
29+
30+
Here are the milestones we use and how we use them:
31+
32+
- "Backlog" -> Work not yet planned for a specific release.
33+
- "On Deck" -> Work under consideration for upcoming milestones.
34+
- "Backlog Candidates" -> Work that is not yet accepted for the backlog. We wait for the community to weigh in.
35+
- "<0.0.0>" -> Work to be done for that version.
36+
37+
With this flow, any un-assigned issues are essentially in triage state and once triaged are either "Backlog" or "Backlog Candidates". They will eventually move to "On Deck" (or be closed). Lastly, they will end up on a version milestone where they will be worked on.
38+
39+
### Project Boards
40+
41+
We use project boards for projects or goals that span multiple milestones.
42+
43+
Think of this as a place to put miscellaneous things (like testing, clean up stuff, etc). As a maintainer, random todos may come up here and there. This gives you a place to add notes temporarily before opening a new issue. Given that our release milestones function off of issues, we believe tasks should have dedicated issues.
44+
45+
It also gives us a way to separate the issue triage from bigger-picture, long-term work.

test/unit/register.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { JSDOM } from "jsdom"
2-
import { loggerModule } from "../utils/helpers"
32
import { registerServiceWorker } from "../../src/browser/register"
3+
import { loggerModule } from "../utils/helpers"
44
import { LocationLike } from "./util.test"
55

66
describe("register", () => {

0 commit comments

Comments
 (0)