Go to file
renovate[bot] e72071c4b8
fix(deps): update module github.com/google/go-github/v35 to v36 (#55)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-06-26 21:40:00 +02:00
.chglog chore: improve generated changelog (#42) 2021-05-09 23:46:46 +02:00
.github disable require branches to be up to date 2021-05-25 17:44:05 +02:00
cmd/drone-github-comment feat: add skip-missing to skip comment if message is not a valid file (#48) 2021-06-13 18:21:20 +02:00
docker chore(deps): update arm64v8/alpine docker tag to v3.14 (#53) 2021-06-16 17:02:01 +02:00
plugin fix(deps): update module github.com/google/go-github/v35 to v36 (#55) 2021-06-26 21:40:00 +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 chore: update build env to golang 1.16 (#43) 2021-05-10 09:03:42 +02:00
.drone.yml chore: update build env to golang 1.16 (#43) 2021-05-10 09:03:42 +02:00
.gitignore ci: auto-generate changelog (#19) 2021-02-15 21:01:43 +01:00
.prettierignore chore: improve generated changelog (#42) 2021-05-09 23:46:46 +02:00
CONTRIBUTING.md docs: add contributing information 2021-01-17 20:25:42 +01:00
LICENSE update copyright year 2021-03-14 15:21:43 +01:00
README.md chore: replace master by main as default branch 2021-01-17 20:31:27 +01:00
go.mod fix(deps): update module github.com/google/go-github/v35 to v36 (#55) 2021-06-26 21:40:00 +02:00
go.sum fix(deps): update module github.com/google/go-github/v35 to v36 (#55) 2021-06-26 21:40:00 +02:00
renovate.json chore: enable renovate golang preset 2021-04-25 13:50:10 +02: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.