Description
Update
We have created a Telegram group chat that is intended for questions regarding the development of PTB. More info can be found here. You very welcome to join if you have questions regarding your Hacktoberfest contribution!
Original Post
In some parts of the world it's already 1st of October and this means: It's time for Hacktoberfest! 💻🥨
Hacktoberfest is an event that encourages open source developers to contribute to repositories through pull requests. If you ever thought about starting coding or giving back to your favourite open source repositories, now is the time! Head over to the hacktoberfest website to learn more about it.
Of course, this is also a great opportunity to contribute to python-telegram-bot 🙂 We already prepared some issues on our repositories, but feel free to begin a hunt for improvements and fixes by yourself! We'd like to especially point out issue #2633, which is about improving our documentation. This issue has several aspects that can be tackled in multiple pull requests and it's great for first time contributors.
⚠️ If you want to tackle an issue, please be sure to
-
first comment on that issue so that we can assign you to it and avoid duplicate pull requests for the same issue by several people.
-
base your branch on the
v14
branch and not on themaster
branch as described below. This is important, as we're currently working towards a breaking release and thev14
branch already contains some notable changes frommaster
. To base your branch onv14
, replace$ git fetch upstream $ git checkout master $ git merge upstream/master $ git checkout -b your-branch-name
with
$ git fetch upstream $ git checkout v14 $ git merge upstream/v14 $ git checkout -b your-branch-name
in the contribution guide.