From bfae433244215ee8c34e906897dc9b4d6ac2f82b Mon Sep 17 00:00:00 2001 From: Justin Tout <3639630+justintout@users.noreply.github.com> Date: Mon, 14 Mar 2022 14:29:19 -0400 Subject: [PATCH] update url references to Progressive-Insurance --- README.md | 6 +++--- cmd/need-cla/main.go | 2 +- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7e794e1..2c58f69 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # need-cla -[![Run Go tests](https://github.com/Progressive/need-cla/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/Progressive/need-cla/actions/workflows/test.yml) +[![Run Go tests](https://github.com/Progressive-Insurance/need-cla/actions/workflows/test.yml/badge.svg)](https://github.com/Progressive-Insurance/need-cla/actions/workflows/test.yml) > Go library and command line utility to check if a GitHub repository might need a CLA signed before contributing @@ -22,7 +22,7 @@ If you know of a good way to check for CLA requirements, please [contribute](./C ### Installation ``` -go get github.com/Progressive/need-cla +go get github.com/progressive-insurance/need-cla ``` ### Usage @@ -30,7 +30,7 @@ go get github.com/Progressive/need-cla First, import the library: ```go -import "github.com/Progressive/need-cla" +import needcla "github.com/progressive-insurance/need-cla" ``` Then, create a GitHub client and check if a repository needs a CLA: diff --git a/cmd/need-cla/main.go b/cmd/need-cla/main.go index c699c66..80dc5da 100644 --- a/cmd/need-cla/main.go +++ b/cmd/need-cla/main.go @@ -16,7 +16,7 @@ import ( "github.com/google/go-github/v38/github" "github.com/peterbourgon/ff/v3" - needcla "github.com/progressive/need-cla" + needcla "github.com/progressive-insurance/need-cla" "golang.org/x/oauth2" ) diff --git a/go.mod b/go.mod index badc90d..c79ff3a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/progressive/need-cla +module github.com/progressive-insurance/need-cla go 1.16