Skip to content
View thedevopsguyblog's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Sydney
Block or Report

Block or report thedevopsguyblog

Report abuse

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

Report abuse

Pinned Loading

  1. Templating method to be invoked by o... Templating method to be invoked by other scripts
    1
    def call(input, binding) {
    2
        def engine = new groovy.text.GStringTemplateEngine()
    3
        def template = engine.createTemplate(input).make(binding)
    4
        return template.toString()
    5
    }
  2. Jenkins Shared Lib build script that... Jenkins Shared Lib build script that uses Docker and the pipeline-utility-steps plugin
    1
    def call() {
    2
        pipeline {
    3
            agent any
    4
            options { timeout(time: 15, unit: 'MINUTES') }
    5
            environment{
  3. Jenkins Shared Lib Jenkins Shared Lib
    1
    /*
    2
    3
    Send a JSON payload to MS Teams channel using a webhook 
    4
        
    5
    1. You invoke this script from another .groovy script, like so...
  4. Message Card Template for MS Teams W... Message Card Template for MS Teams Webhooks
    1
    {
    2
    	"@type": "MessageCard",
    3
    	"@context": "https://schema.org/extensions",
    4
    	"summary": "Jenkins Notifications",
    5
    	"themeColor": "$color",
  5. aws-amplify/amplify-backend aws-amplify/amplify-backend Public

    Home to all tools related to Amplify's code-first DX (Gen 2) for building fullstack apps on AWS

    TypeScript 147 49