From 8918450a4fd262a01c1c58c02c13004fc052b14d Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 20 Sep 2020 22:04:09 +0200 Subject: [PATCH] fix go module and readme --- README.md | 12 ++++++------ cmd/drone-github-comment/config.go | 2 +- cmd/drone-github-comment/main.go | 2 +- go.mod | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4ff7dc4..8f51fd5 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/cmd/drone-github-comment/config.go b/cmd/drone-github-comment/config.go index 710eb06..3be1e99 100644 --- a/cmd/drone-github-comment/config.go +++ b/cmd/drone-github-comment/config.go @@ -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. diff --git a/cmd/drone-github-comment/main.go b/cmd/drone-github-comment/main.go index 5e785a3..d96c27d 100644 --- a/cmd/drone-github-comment/main.go +++ b/cmd/drone-github-comment/main.go @@ -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" diff --git a/go.mod b/go.mod index 9ab3d8e..b18625b 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/xoxys/drone-github-comment +module github.com/thegeeklab/drone-github-comment go 1.14