Skip to content

Instantly share code, notes, and snippets.

@kenu
Last active September 8, 2021 07:49
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 kenu/a98f27cce0f3c34187acf0966538c306 to your computer and use it in GitHub Desktop.
Save kenu/a98f27cce0f3c34187acf0966538c306 to your computer and use it in GitHub Desktop.
Hide lines of issue with `Bump` keyword.
* Hide line of issues with `Bump` keyword.
* Use this code in console of GitHub issue list page.
```js
const issues = document.querySelectorAll('.js-issue-row');
[...issues].forEach((issue, idx) => {
issues[idx].hidden = issue.innerText.includes('Bump');
});
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment