Go to file
Robert Kaussow 3a43e65a13
ci: auto-generate changelog (#19)
2021-02-15 21:01:43 +01:00
.chglog ci: auto-generate changelog (#19) 2021-02-15 21:01:43 +01:00
.github chore: replace master by main as default branch 2021-01-17 20:31:27 +01:00
cmd/drone-github-comment [skip ci] prepare release 2020-11-08 21:38:38 +01:00
docker chore(deps): update arm64v8/alpine:3.13 docker digest to 019c591 2021-01-29 04:57:44 +00:00
plugin fix google/go-github update 2020-11-12 22:20:11 +01: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 ci: auto-generate changelog (#19) 2021-02-15 21:01:43 +01:00
.drone.yml ci: auto-generate changelog (#19) 2021-02-15 21:01:43 +01:00
.gitignore ci: auto-generate changelog (#19) 2021-02-15 21:01:43 +01:00
CONTRIBUTING.md docs: add contributing information 2021-01-17 20:25:42 +01:00
LICENSE initial commit 2020-09-20 00:00:34 +02:00
README.md chore: replace master by main as default branch 2021-01-17 20:31:27 +01:00
go.mod chore(deps): update golang.org/x/oauth2 commit hash to 6667018 (#18) 2021-02-11 20:28:23 +01:00
go.sum chore(deps): update golang.org/x/oauth2 commit hash to 6667018 (#18) 2021-02-11 20:28:23 +01:00
renovate.json chore: use renovate preset config 2021-01-17 19:52:14 +01:00

README.md

drone-github-comment

Drone plugin to add comments to GitHub Issues/PRs

Build Status Docker Hub Quay.io Go Report Card GitHub contributors 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 --file docker/Dockerfile.amd64 --tag thegeeklab/drone-github-comment .

Usage

docker run --rm \
  -e DRONE_BUILD_EVENT=pull_request \
  -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

Contributors

Special thanks goes to all contributors. If you would like to contribute, please see the instructions.

License

This project is licensed under the MIT License - see the LICENSE file for details.