github.com/xhghs/rclone@v1.51.1-0.20200430155106-e186a28cced8/MAINTAINERS.md (about)

     1  # Maintainers guide for rclone #
     2  
     3  Current active maintainers of rclone are:
     4  
     5  | Name             | GitHub ID   | Specific Responsibilities    |
     6  | :--------------- | :---------- | :--------------------------  |
     7  | Nick Craig-Wood  | @ncw        | overall project health       |
     8  | Stefan Breunig   | @breunigs   |                              |
     9  | Ishuah Kariuki   | @ishuah     |                              |
    10  | Remus Bunduc     | @remusb     | cache backend                |
    11  | Fabian Möller    | @B4dM4n     |                              |
    12  | Alex Chen        | @Cnly       | onedrive backend             |
    13  | Sandeep Ummadi   | @sandeepkru | azureblob backend            |
    14  | Sebastian Bünger | @buengese   | jottacloud & yandex backends |
    15  | Ivan Andreev     | @ivandeex   | chunker & mailru backends    |
    16  
    17  **This is a work in progress Draft**
    18  
    19  This is a guide for how to be an rclone maintainer.  This is mostly a writeup of what I (@ncw) attempt to do.
    20  
    21  ## Triaging Tickets ##
    22  
    23  When a ticket comes in it should be triaged.  This means it should be classified by adding labels and placed into a milestone. Quite a lot of tickets need a bit of back and forth to determine whether it is a valid ticket so tickets may remain without labels or milestone for a while.
    24  
    25  Rclone uses the labels like this:
    26  
    27  * `bug` - a definite verified bug
    28  * `can't reproduce` - a problem which we can't reproduce
    29  * `doc fix` - a bug in the documentation - if users need help understanding the docs add this label
    30  * `duplicate` - normally close these and ask the user to subscribe to the original
    31  * `enhancement: new remote` - a new rclone backend
    32  * `enhancement` - a new feature
    33  * `FUSE` - do do with `rclone mount` command
    34  * `good first issue` - mark these if you find a small self contained issue - these get shown to new visitors to the project
    35  * `help` wanted - mark these if you find a self contained issue - these get shown to new visitors to the project
    36  * `IMPORTANT` - note to maintainers not to forget to fix this for the release
    37  * `maintenance` - internal enhancement, code re-organisation etc
    38  * `Needs Go 1.XX` - waiting for that version of Go to be released
    39  * `question` - not a `bug` or `enhancement` - direct to the forum for next time
    40  * `Remote: XXX` - which rclone backend this affects
    41  * `thinking` - not decided on the course of action yet
    42  
    43  If it turns out to be a bug or an enhancement it should be tagged as such, with the appropriate other tags.  Don't forget the "good first issue" tag to give new contributors something easy to do to get going.
    44  
    45  When a ticket is tagged it should be added to a milestone, either the next release, the one after, Soon or Help Wanted.  Bugs can be added to the "Known Bugs" milestone if they aren't planned to be fixed or need to wait for something (eg the next go release).
    46  
    47  The milestones have these meanings:
    48  
    49  * v1.XX - stuff we would like to fit into this release
    50  * v1.XX+1 - stuff we are leaving until the next release
    51  * Soon - stuff we think is a good idea - waiting to be scheduled to a release
    52  * Help wanted - blue sky stuff that might get moved up, or someone could help with
    53  * Known bugs - bugs waiting on external factors or we aren't going to fix for the moment
    54  
    55  Tickets [with no milestone](https://github.com/rclone/rclone/issues?utf8=✓&q=is%3Aissue%20is%3Aopen%20no%3Amile) are good candidates for ones that have slipped between the gaps and need following up.
    56  
    57  ## Closing Tickets ##
    58  
    59  Close tickets as soon as you can - make sure they are tagged with a release.  Post a link to a beta in the ticket with the fix in, asking for feedback.
    60  
    61  ## Pull requests ##
    62  
    63  Try to process pull requests promptly!
    64  
    65  Merging pull requests on GitHub itself works quite well now-a-days so you can squash and rebase or rebase pull requests.  rclone doesn't use merge commits.  Use the squash and rebase option if you need to edit the commit message.
    66  
    67  After merging the commit, in your local master branch, do `git pull` then run `bin/update-authors.py` to update the authors file then `git push`.
    68  
    69  Sometimes pull requests need to be left open for a while - this especially true of contributions of new backends which take a long time to get right.
    70  
    71  ## Merges ##
    72  
    73  If you are merging a branch locally then do `git merge --ff-only branch-name` to avoid a merge commit.  You'll need to rebase the branch if it doesn't merge cleanly.
    74  
    75  ## Release cycle ##
    76  
    77  Rclone aims for a 6-8 week release cycle.  Sometimes release cycles take longer if there is something big to merge that didn't stabilize properly or for personal reasons.
    78  
    79  High impact regressions should be fixed before the next release.
    80  
    81  Near the start of the release cycle the dependencies should be updated with `make update` to give time for bugs to surface.
    82  
    83  Towards the end of the release cycle try not to merge anything too big so let things settle down.
    84  
    85  Follow the instructions in RELEASE.md for making the release. Note that the testing part is the most time consuming often needing several rounds of test and fix depending on exactly how many new features rclone has gained.
    86  
    87  ## Mailing list ##
    88  
    89  There is now an invite only mailing list for rclone developers `rclone-dev` on google groups.
    90  
    91  ## TODO ##
    92  
    93  I should probably make a dev@rclone.org to register with cloud providers.