https://github.com/jmccann/drone-github-comment
Drone plugin to add comments to github issues and pull requests
https://github.com/jmccann/drone-github-comment
drone-plugin
Last synced: about 1 year ago
JSON representation
Drone plugin to add comments to github issues and pull requests
- Host: GitHub
- URL: https://github.com/jmccann/drone-github-comment
- Owner: jmccann
- Created: 2017-04-24T16:13:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-10-23T23:57:44.000Z (over 2 years ago)
- Last Synced: 2025-03-24T14:11:15.098Z (over 1 year ago)
- Topics: drone-plugin
- Language: Go
- Size: 1.54 MB
- Stars: 20
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
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 jmccann/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 \
jmccann/drone-github-comment:1 --repo-owner jmccann --repo-name drone-github-comment \
--pull-request 12 --api-key abcd1234 --message "Hello World!"
```