gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

pull_request_template.md (1254B)


      1 # Description
      2 
      3 > If this is a code change, please include a summary of what you've coded, and link to the issue(s) it closes/implements.
      4 >
      5 > If this is a documentation change, please briefly describe what you've changed and why.
      6 
      7 This pull request implements xyz or fixes abc.
      8 
      9 closes #(issue)
     10 closes #(another issue)
     11 
     12 ## Checklist
     13 
     14 Please put an x inside each checkbox to indicate that you've read and followed it: `[ ]` -> `[x]`
     15 
     16 If this is a documentation change, only the first checkbox must be filled (you can delete the others if you want).
     17 
     18 - [ ] I/we have read the [GoToSocial contribution guidelines](https://github.com/superseriousbusiness/gotosocial/blob/main/CONTRIBUTING.md).
     19 - [ ] I/we have discussed the proposed changes already, either in an issue on the repository, or in the Matrix chat.
     20 - [ ] I/we have performed a self-review of added code.
     21 - [ ] I/we have written code that is legible and maintainable by others.
     22 - [ ] I/we have commented the added code, particularly in hard-to-understand areas.
     23 - [ ] I/we have made any necessary changes to documentation.
     24 - [ ] I/we have added tests that cover new code.
     25 - [ ] I/we have run tests and they pass locally with the changes.
     26 - [ ] I/we have run `go fmt ./...` and `golangci-lint run`.