Python script that syncs GitLab instance issues of one user with their Todoist account. I personally use this to automatically create, update & close tasks in Todoist based on their state in the Gitlab instance hosted by my workplace.
Clone the repository, cd
into it and use the package manager pip to install the requirements. Afterwards you need to create the config.yml
file (based on the config.example.yml
).
git clone https://github.com/njoye/gitlab2todoist
cd gitlab2todoist
pip3 install -r requirements.txt
# Edit the configuration file with your personal values!
I use this script with a cronjob on my personal server and run it every few minutes so that my Todoist account is always up-to-date. I use the following command.
cd /directory/to/script/gitlab2todoist && python3 main.py
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. If you have any further questions, please open an issue as well - I will try to answer you as soon as possible.