Skip to content

Instantly share code, notes, and snippets.

View qixiaobo's full-sized avatar
:octocat:
Coding

qixiaobo qixiaobo

:octocat:
Coding
View GitHub Profile
@philips
philips / users.md
Last active April 5, 2023 14:17
Kubernetes Third-Party Resource Users
@clifford-github
clifford-github / gist:7748223
Last active August 7, 2023 07:58
Get list of Jobs in a View Groovy from within Jenkins. Run the following snippet in the Scripting console or a Groovy build step. The latter requires the installation of the Groovy plugin
hudson.model.Hudson.instance.getView('<VIEW>').items.each() {
println it.fullDisplayName
}