github.com/wfusion/gofusion@v1.1.14/common/infra/asynq/CONTRIBUTING.md (about) 1 # Contributing 2 3 Thanks for your interest in contributing to Asynq! 4 We are open to, and grateful for, any contributions made by the community. 5 6 ## Reporting Bugs 7 8 Have a look at our [issue tracker](https://github.com/hibiken/asynq/issues). If you can't find an issue (open or closed) 9 describing your problem (or a very similar one) there, please open a new issue with 10 the following details: 11 12 - Which versions of Go and Redis are you using? 13 - What are you trying to accomplish? 14 - What is the full error you are seeing? 15 - How can we reproduce this? 16 - Please quote as much of your code as needed to reproduce (best link to a 17 public repository or Gist) 18 19 ## Getting Help 20 21 We run a [Gitter 22 channel](https://gitter.im/go-asynq/community) where you can ask questions and 23 get help. Feel free to ask there before opening a GitHub issue. 24 25 ## Submitting Feature Requests 26 27 If you can't find an issue (open or closed) describing your idea on our [issue 28 tracker](https://github.com/hibiken/asynq/issues), open an issue. Adding answers to the following 29 questions in your description is +1: 30 31 - What do you want to do, and how do you expect Asynq to support you with that? 32 - How might this be added to Asynq? 33 - What are possible alternatives? 34 - Are there any disadvantages? 35 36 Thank you! We'll try to respond as quickly as possible. 37 38 ## Contributing Code 39 40 1. Fork this repo 41 2. Download your fork `git clone git@github.com:your-username/asynq.git && cd asynq` 42 3. Create your branch `git checkout -b your-branch-name` 43 4. Make and commit your changes 44 5. Push the branch `git push origin your-branch-name` 45 6. Create a new pull request 46 47 Please try to keep your pull request focused in scope and avoid including unrelated commits. 48 Please run tests against redis cluster locally with `--redis_cluster` flag to ensure that code works for Redis cluster. TODO: Run tests using Redis cluster on CI. 49 50 After you have submitted your pull request, we'll try to get back to you as soon as possible. We may suggest some changes or improvements. 51 52 Thank you for contributing!