Categorygithub.com/tonglil/drone-github-comment
repositorypackage
0.0.0-20240702003239-e76ea5a86259
Repository: https://github.com/tonglil/drone-github-comment.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

drone-github-comment

Drone plugin to add comments to a Github Issues/PRs.

Build

Build the binary with the following commands:

go build
go test

Docker

Build the docker image with the following commands:

CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo
docker build --rm=true -t tonglil/drone-github-comment .

Please note incorrectly building the image for the correct x64 linux and with GCO disabled will result in an error when running the Docker image:

docker: Error response from daemon: Container command
'/bin/drone-github-comment' not found or does not exist.

Usage

Execute from the working directory:

docker run --rm \
  tonglil/drone-github-comment:1 --repo-owner tonglil --repo-name drone-github-comment \
  --pull-request 12 --api-key abcd1234 --message "Hello World!"