Skip to content
View pere3's full-sized avatar

Block or report pere3

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. jenkins shared-library dangled image... jenkins shared-library dangled images cleaner / images untag, can be used with gcr.io and other docker-compatible registries
    1
    class DockerCleaner {
    2
        DockerRegistry dockerRegistry
    3
    
    
    4
        DockerCleaner(DockerRegistry dockerRegistry) {
    5
            this.dockerRegistry = dockerRegistry
  2. Groovy script that find long running... Groovy script that find long running Jenkins jobs, and POST hook to saltstack reactor.
    1
    import groovy.json.JsonOutput
    2
    
    
    3
    def runningBuilds = Jenkins.instance.getView('All').getBuilds().findAll() { it.isInProgress() }
    4
    LinkedHashMap notificationPayload = [:]
    5
    runningBuilds.each{ value ->