Skip to content

Instantly share code, notes, and snippets.

View digitalpardoe's full-sized avatar
💭
¯\_(ツ)_/¯

Alex Pardoe digitalpardoe

💭
¯\_(ツ)_/¯
View GitHub Profile
@digitalpardoe
digitalpardoe / the_arborist.rb
Last active January 9, 2020 09:30 — forked from kevinhughes27/the_arborist.rb
Find Un-Deleted Branches from Closed PRs and Stale Branches
#!/usr/bin/env ruby
require 'octokit'
require 'highline/import'
require 'colorize'
require 'byebug'
require 'csv'
require 'active_support/time'
token = ask("Enter your Github personal access token: ") { |q| q.echo = "*" }