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
# | |
# This script uses the github command line tool | |
# to delete the last 30 logs from your repository's workflow runs | |
# | |
# Requirements | |
# | |
# gh - github command line (brew install gh) | |
# you will need a GH_TOKEN, create it here: https://github.com/settings/tokens | |
# | |
# once you've created the personal access token with permission to manage your workflows |
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
;(function($){ | |
$.support.touch = 'ontouchend' in document; | |
if (!$.support.touch) { | |
return; | |
} | |
var eventMap = { | |
click: 'touchend', | |
mousedown: 'touchstart', |