Skip to content

dearing/drone-slack-blame

 
 

Repository files navigation

drone-slack-blame

Build Status Coverage Status

Drone plugin to send build status blames via Slack

Binary

Build the binary using make:

make deps build

Example

./drone-slack-blame <<EOF
{
    "repo": {
        "clone_url": "git://github.com/drone/drone",
        "owner": "drone",
        "name": "drone",
        "full_name": "drone/drone"
    },
    "system": {
        "link_url": "https://beta.drone.io"
    },
    "build": {
        "number": 22,
        "status": "success",
        "started_at": 1421029603,
        "finished_at": 1421029813,
        "message": "Update the Readme",
        "author": "johnsmith",
        "author_email": "john.smith@gmail.com"
        "event": "push",
        "branch": "master",
        "commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
        "ref": "refs/heads/master"
    },
    "workspace": {
        "root": "/drone/src",
        "path": "/drone/src/github.com/drone/drone"
    },
    "vargs": {
        "token": "xxxxxx",
        "channel": "dev",
        "success": {
            "username": "Happy Keanu (on behalf of Drone)",
            "icon": ":happy_keanu:",
            "message": "The build is fixed!",
            "image_attachments": [
                "http://i.imgur.com/TP4PIxc.jpg"
            ]
        },
        "failure": {
            "username": "Sad Keanu (on behalf of Drone)",
            "icon": ":sad_keanu:",
            "message": "The build is broken!",
            "image_attachments": [
                "http://cdn.meme.am/instances/51000361.jpg"
            ]
        }
    }
}
EOF

Docker

Build the container using make:

make deps docker

Example

docker run -i plugins/drone-slack-blame <<EOF
{
    "repo": {
        "clone_url": "git://github.com/drone/drone",
        "owner": "drone",
        "name": "drone",
        "full_name": "drone/drone"
    },
    "system": {
        "link_url": "https://beta.drone.io"
    },
    "build": {
        "number": 22,
        "status": "success",
        "started_at": 1421029603,
        "finished_at": 1421029813,
        "message": "Update the Readme",
        "author": "johnsmith",
        "author_email": "john.smith@gmail.com"
        "event": "push",
        "branch": "master",
        "commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
        "ref": "refs/heads/master"
    },
    "workspace": {
        "root": "/drone/src",
        "path": "/drone/src/github.com/drone/drone"
    },
    "vargs": {
        "token": "xxxxxx",
        "channel": "dev",
        "success": {
            "username": "Happy Keanu (on behalf of Drone)",
            "icon": ":happy_keanu:",
            "message": "The build is fixed!",
            "image_attachments": [
                "http://i.imgur.com/TP4PIxc.jpg"
            ]
        },
        "failure": {
            "username": "Sad Keanu (on behalf of Drone)",
            "icon": ":sad_keanu:",
            "message": "The build is broken!",
            "image_attachments": [
                "http://cdn.meme.am/instances/51000361.jpg"
            ]
        }
    }
}
EOF

About

Drone plugin for sending Slack notifications to individuals and groups

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 84.3%
  • Makefile 15.7%