This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation checkoutBrandingUpsert($checkoutBrandingInput: CheckoutBrandingInput!, $checkoutProfileId: ID!) { | |
checkoutBrandingUpsert(checkoutBrandingInput: $checkoutBrandingInput, checkoutProfileId: $checkoutProfileId) { | |
checkoutBranding { | |
designSystem { | |
colors { | |
schemes { | |
scheme1 { | |
primaryButton { | |
background | |
text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
is:pr is:closed status:failure closed:>=2016-07-20 | |
is:pr is:closed status:success closed:>=2016-07-20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
TEMPFILE = "/tmp/git-merge-dates.txt" | |
`git log --merges --pretty=format:"%ci" --date=short > #{TEMPFILE}` | |
puts "MONTH,COMMITS" | |
(2011..2016).each do |year| | |
(1..12).each do |month| | |
pattern = year.to_s + "-" + sprintf("%02d", month) | |
result = `grep #{pattern} #{TEMPFILE} | wc -l` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title :title string | |
date :date string 'YYYY-MM-DD' | |
allday? :all_day boolean | |
startTime :start_time HH:MM Eastern Standard Time, 24 hour clock | |
endTime :end_time HH:MM Eastern Standard Time, 24 hour clock | |
Office :location string | |
liveStream :live_Stream boolean | |
attendees :size int | |
details :summary string | |
type :kind string(workshop,talk,course) |