Go to file
Robert Kaussow c515a891a3
fix versioning
2020-09-20 23:26:42 +02:00
.github fix versioning 2020-09-20 23:26:42 +02:00
cmd/drone-github-comment fix go module and readme 2020-09-20 22:04:09 +02:00
docker build binaries 2020-09-20 22:43:22 +02:00
plugin initial commit 2020-09-20 00:00:34 +02:00
testdata initial commit 2020-09-20 00:00:34 +02:00
.dockerignore initial commit 2020-09-20 00:00:34 +02:00
.drone.jsonnet fix versioning 2020-09-20 23:26:42 +02:00
.drone.yml fix versioning 2020-09-20 23:26:42 +02:00
.gitignore initial commit 2020-09-20 00:00:34 +02:00
CHANGELOG.md [skip ci] add changelog 2020-09-20 22:21:20 +02:00
LICENSE initial commit 2020-09-20 00:00:34 +02:00
README.md fix versioning 2020-09-20 23:26:42 +02:00
go.mod fix go module and readme 2020-09-20 22:04:09 +02:00
go.sum initial commit 2020-09-20 00:00:34 +02:00

README.md

drone-github-comment

GitHub Comment - Drone plugin to add comments to GitHub Issues/PRs

Build Status Docker Hub Quay.io Source: GitHub License: MIT

Drone plugin to add comments to GitHub Issues/PR's.

Build

Build the binary with the following command:

export GOOS=linux
export GOARCH=amd64
export CGO_ENABLED=0
export GO111MODULE=on

go build -v -a -tags netgo -o release/drone-github-comment

Build the Docker image with the following command:

docker build \
  --label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
  --label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
  --file docker/Dockerfile.amd64 --tag thegeeklab/drone-github-comment .

Usage

docker run --rm \
  -e DRONE_BUILD_EVENT=pull \
  -e DRONE_REPO_OWNER=octocat \
  -e DRONE_REPO_NAME=foo \
  -e DRONE_PULL_REQUEST=1
  -e PLUGIN_API_KEY=abc123 \
  -e PLUGIN_MESSAGE="Demo comment" \
  -v $(pwd):$(pwd) \
  -w $(pwd) \
  thegeeklab/drone-github-comment