Skip to content

Commit

Permalink
Update GitHub username in imported package names and URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
free committed Nov 17, 2017
1 parent f8bd8e8 commit 06cac68
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ staticcheck: get_staticcheck

build:
@echo ">> building binaries"
@GOOS=linux GOARCH=amd64 $(GO) build -ldflags "-X main.Version=$(VERSION)" github.com/alin-sinpalean/jiralert/cmd/jiralert
@GOOS=linux GOARCH=amd64 $(GO) build -ldflags "-X main.Version=$(VERSION)" github.com/free/jiralert/cmd/jiralert

tarball:
@echo ">> packaging release $(VERSION)"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JIRAlert [![Build Status](https://travis-ci.org/alin-sinpalean/jiralert.svg)](https://travis-ci.org/alin-sinpalean/jiralert) [![Go Report Card](https://goreportcard.com/badge/github.com/alin-sinpalean/jiralert)](https://goreportcard.com/report/github.com/alin-sinpalean/jiralert) [![GoDoc](https://godoc.org/github.com/alin-sinpalean/jiralert?status.svg)](https://godoc.org/github.com/alin-sinpalean/jiralert)
# JIRAlert [![Build Status](https://travis-ci.org/free/jiralert.svg)](https://travis-ci.org/free/jiralert) [![Go Report Card](https://goreportcard.com/badge/github.com/free/jiralert)](https://goreportcard.com/report/github.com/free/jiralert) [![GoDoc](https://godoc.org/github.com/free/jiralert?status.svg)](https://godoc.org/github.com/free/jiralert)
[Prometheus Alertmanager](https://github.com/prometheus/alertmanager) webhook receiver for [JIRA](https://www.atlassian.com/software/jira).

## Overview
Expand All @@ -9,10 +9,10 @@ If a corresponding JIRA issue already exists but is resolved, it is reopened. A

## Usage

Get JIRAlert, either as a [packaged release](https://github.com/alin-sinpalean/jiralert/releases) or build it yourself:
Get JIRAlert, either as a [packaged release](https://github.com/free/jiralert/releases) or build it yourself:

```
$ go get github.com/alin-sinpalean/jiralert/cmd/jiralert
$ go get github.com/free/jiralert/cmd/jiralert
```

then run it from the command line:
Expand Down Expand Up @@ -80,6 +80,6 @@ env DEBUG=1 ./jiralert

## License

JIRAlert is licensed under the [MIT License](https://github.com/alin-sinpalean/jiralert/blob/master/LICENSE).
JIRAlert is licensed under the [MIT License](https://github.com/free/jiralert/blob/master/LICENSE).

Copyright (c) 2017, Alin Sinpalean
4 changes: 2 additions & 2 deletions cmd/jiralert/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"runtime"
"strconv"

"github.com/alin-sinpalean/jiralert"
"github.com/alin-sinpalean/jiralert/alertmanager"
"github.com/free/jiralert"
"github.com/free/jiralert/alertmanager"
log "github.com/golang/glog"
"github.com/prometheus/client_golang/prometheus/promhttp"
_ "net/http/pprof"
Expand Down
2 changes: 1 addition & 1 deletion notify.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net/http"
"strings"

"github.com/alin-sinpalean/jiralert/alertmanager"
"github.com/free/jiralert/alertmanager"
"github.com/andygrunwald/go-jira"
log "github.com/golang/glog"
"github.com/trivago/tgo/tcontainer"
Expand Down
2 changes: 1 addition & 1 deletion vendor/vendor.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,5 @@
"revisionTime": "2017-08-12T16:00:11Z"
}
],
"rootPath": "github.com/alin-sinpalean/jiralert"
"rootPath": "github.com/free/jiralert"
}

0 comments on commit 06cac68

Please sign in to comment.