fix go module and readme

This commit is contained in:
Robert Kaussow 2020-09-20 22:04:09 +02:00
parent 011344a036
commit 8918450a4f
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
4 changed files with 9 additions and 9 deletions

View File

@ -2,11 +2,11 @@
Drone CI - Plugin to add comments to GitHub Issues/PRs
[![Build Status](https://img.shields.io/drone/build/xoxys/drone-github-comment?logo=drone)](https://cloud.drone.io/xoxys/drone-github-comment)
[![Docker Hub](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/xoxys/drone-github-comment)
[![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)
[![Quay.io](https://img.shields.io/badge/quay-latest-blue.svg?logo=docker&logoColor=white)](https://quay.io/repository/thegeeklab/drone-github-comment)
[![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/xoxys/drone-github-comment)
[![License: MIT](https://img.shields.io/github/license/xoxys/drone-github-comment)]([LICENSE](https://github.com/xoxys/drone-github-comment/blob/master/LICENSE))
[![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))
Drone plugin to add comments to GitHub Issues/PR's.
@ -29,7 +29,7 @@ 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 xoxys/drone-github-comment .
--file docker/Dockerfile.amd64 --tag thegeeklab/drone-github-comment .
```
## Usage
@ -44,5 +44,5 @@ docker run --rm \
-e PLUGIN_MESSAGE="Demo comment" \
-v $(pwd):$(pwd) \
-w $(pwd) \
xoxys/drone-github-comment
thegeeklab/drone-github-comment
```

View File

@ -2,7 +2,7 @@ package main
import (
"github.com/urfave/cli/v2"
"github.com/xoxys/drone-github-comment/plugin"
"github.com/thegeeklab/drone-github-comment/plugin"
)
// settingsFlags has the cli.Flags for the plugin.Settings.

View File

@ -7,7 +7,7 @@ import (
"github.com/drone-plugins/drone-plugin-lib/urfave"
"github.com/joho/godotenv"
"github.com/urfave/cli/v2"
"github.com/xoxys/drone-github-comment/plugin"
"github.com/thegeeklab/drone-github-comment/plugin"
)
var version = "unknown"

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/xoxys/drone-github-comment
module github.com/thegeeklab/drone-github-comment
go 1.14