Skip to content

Instantly share code, notes, and snippets.

@asgrim
Last active October 30, 2023 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asgrim/2ef651ceb0eb91d2523901b66c681a80 to your computer and use it in GitHub Desktop.
Save asgrim/2ef651ceb0eb91d2523901b66c681a80 to your computer and use it in GitHub Desktop.
greasemonkey script to remove the job name truncation of GH Actions jobs
// ==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/@art4@youthweb.social/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