This is a Chrome extension that you can use with gitlab.com or on-premise Gitlab instances. It shows a button on the project page and provides a list of runners that project uses when you click the button.
- Clone the repository
- Run
npm run package
. This will create the extension packages asextension-chrome.tar.gz
andextension-firefox.tar.gz
- Decompress the package you want in a suitable folder.
- Install on Extensions page using "Load unpacked" button.
Now when you visit a Gitlab project page you will see a new button appear. Click the button and you will see a list of runners that the project uses in its .gitlab-ci.yml
file.
The extension works by extracting the tags
fields used in that file and searching those tags with the Gitlab Runner API.
Enjoy!
Thanks Codestar for coming up with the idea and providing a prototype that i built upon