Last active
October 30, 2023 10:15
-
-
Save asgrim/2ef651ceb0eb91d2523901b66c681a80 to your computer and use it in GitHub Desktop.
greasemonkey script to remove the job name truncation of GH Actions jobs
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
// ==UserScript== | |
// @name Fix GH Actions Left Column width | |
// @match *://github.com/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js | |
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js | |
// @grant none | |
// ==/UserScript== | |
console.log('GM script to fix GH Actions left column width'); | |
// thanks https://phpc.social/@[email protected]/111323319571716871 | |
waitForKeyElements(".ActionListItem-label--truncate", function (n) { | |
n.removeClass("ActionListItem-label--truncate"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment