mirror of
https://github.com/thegeeklab/wp-github-comment.git
synced 2024-11-09 17:50:38 +00:00
Woodpecker CI plugin to add comments to GitHub Issues and Pull Requests
cmd/drone-github-comment | ||
docker | ||
plugin | ||
testdata | ||
.dockerignore | ||
.drone.jsonnet | ||
.drone.yml | ||
.gitignore | ||
CHANGELOG.md | ||
go.mod | ||
go.sum | ||
LICENSE | ||
README.md |
drone-github-comment
Drone CI - Plugin to add comments to GitHub Issues/PRs
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