2020-09-19 22:00:34 +00:00
|
|
|
# drone-github-comment
|
|
|
|
|
|
|
|
Drone CI - Plugin to add comments to GitHub Issues/PRs
|
|
|
|
|
2020-09-20 20:04:09 +00:00
|
|
|
[![Build Status](https://img.shields.io/drone/build/thegeeklab/drone-github-comment?logo=drone)](https://cloud.drone.io/thegeeklab/drone-github-comment)
|
|
|
|
[![Docker Hub](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/thegeeklab/drone-github-comment)
|
2020-09-19 22:00:34 +00:00
|
|
|
[![Quay.io](https://img.shields.io/badge/quay-latest-blue.svg?logo=docker&logoColor=white)](https://quay.io/repository/thegeeklab/drone-github-comment)
|
2020-09-20 20:04:09 +00:00
|
|
|
[![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/drone-github-comment)
|
|
|
|
[![License: MIT](https://img.shields.io/github/license/thegeeklab/drone-github-comment)]([LICENSE](https://github.com/thegeeklab/drone-github-comment/blob/master/LICENSE))
|
2020-09-19 22:00:34 +00:00
|
|
|
|
|
|
|
Drone plugin to add comments to GitHub Issues/PR's.
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
Build the binary with the following command:
|
|
|
|
|
|
|
|
```Shell
|
|
|
|
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:
|
|
|
|
|
|
|
|
```Shell
|
|
|
|
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) \
|
2020-09-20 20:04:09 +00:00
|
|
|
--file docker/Dockerfile.amd64 --tag thegeeklab/drone-github-comment .
|
2020-09-19 22:00:34 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```Shell
|
|
|
|
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) \
|
2020-09-20 20:04:09 +00:00
|
|
|
thegeeklab/drone-github-comment
|
2020-09-19 22:00:34 +00:00
|
|
|
```
|