houhoulis / todo_github_twilio

Automated Kanban-style todo list system -- https://blog.alicegoldfuss.com/automating-my-todo/ -- but in ruby.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repo is a slightly-tweaked version of Alice Goldfuss's automated todo system. This system allows you to create and manage to-do items using a Kanban system. The automated part uses the text from your completed Kanban cards to create a weekly "release" in your Kanban system, and to send you a summary of the release in a text message.

It sounded both more effective, and easier, than my tendency to keep scraps of lists everywhere.

It's cool that Alice wrote this up! You should read her writeup in her blog. She even provides a Python script.

She describes the approach so well, it sounded like something I could implement in a few hours. So I did.

The tweaks I made were the time-consuming parts, and that's why I'm posting this repo. These are the changes I made:

Update GitHub authentication

In order to access the Project via the GitHub REST API†, you need a "personal access token" (Settings > Developer Settings > Personal access tokens). The token needs to have "repo" scope; there's apparently no finer-grained access available.

The tweak I made here is to adhere to a change in GitHub's REST API. GitHub wants access tokens to be passed in an HTTP header now, not in the URL as a query string. (Here's GitHub's REST API doc about authentication, and the blog post where they announced the deprecation.)

Here's the header: "Authorization: token <MY_GITHUB_TOKEN>". That worked fine, both in curl and in my script.

Port to Ruby

The initial version of my script is here. This works as a cron job or from the command line, using rvm to manage the Ruby version and gemset (since I use rvm††).

I used rvm wrappers and an rvm alias to make it easier to run the script as a cron job. It was simple, but I hadn't done it before. It's documented well on rvm's site.

Once I'd created the rvm alias for the ruby version and gemset I'd created for the project, this is the cron job (slightly elided) that I ended up with. It runs at 5pm Fridays:

0 17 * * 5 cd PROJECT_DIR && source CREDENTIALS_FILE && ~/.rvm/wrappers/RVM_ALIAS/ruby weekly_release.rb >> cron.log 2>>err.log

It works great! The script takes about 2 seconds, and I get a text from Twilio immediately with the summary of what I accomplished for the week.

Create a blank release if necessary

I don't want to suggest I ever have a week where I don't accomplish any of the tasks on my to-do list. . . but . . .

... If, on Friday at 5pm, there are no cards in the "Done" column, the inital version of my script runs fine -- sort of:

  1. The script tries to create a "Release" card using the text of the "Done" cards.
  2. There are no "Done" cards, so there is no text to use for the "Release" card.
  3. Creating the "Release" card fails, with the GitHub API error "Note can't be blank".
  4. The script continues: it sends a text via twilio with only the "💪🏼 Weekly Release! 🎉" message, and then archives each of the 0 cards in the Done list.

So: there's an API error, there's no "Release" card for the week, and a nearly-blank text is sent.

I've changed the script so that if there are no "Done" cards, it creates a "Release" card and sends a text message saying no progress was made.

Enjoy!

Check out Alice's blog post for more details, including about the decisions she made.


I would have used GitHub's GraphQL API rather than the REST API, but the GraphQL API did not sufficiently support Projects.

†† I had just switched to using the fish shell. In order to use rvm in fish, I needed to download this function into ~/.config/fish/functions/: https://github.com/lunks/fish-nuggets/blob/4986034/functions/rvm.fish

About

Automated Kanban-style todo list system -- https://blog.alicegoldfuss.com/automating-my-todo/ -- but in ruby.


Languages

Language:Ruby 100.0%