Skip to content

Instantly share code, notes, and snippets.

View rkallensee's full-sized avatar
👋
Hi!

Raphael Kallensee rkallensee

👋
Hi!
View GitHub Profile
@rkallensee
rkallensee / github_issues_to_csv.rb
Last active April 30, 2024 11:48 — forked from tkarpinski/github_issues_to_csv.rb
Export Github issues to CSV grouped by Milestone
# original source: https://gist.github.com/tkarpinski/2369729
require 'octokit'
require 'csv'
require 'date'
# Github access token to access the project
# Create one at https://github.com/settings/tokens
ACCESS_TOKEN="GITHUB_ACCESS_TOKEN"