Skip to content

Commit 7d867d3

Browse files
authored
Merge pull request #236 from saneyuki/transfer
2 parents 21a7042 + 643e444 commit 7d867d3

13 files changed

Lines changed: 35 additions & 35 deletions

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# popuko
22

3-
[![Build Status (master)](https://travis-ci.org/karen-irc/popuko.svg?branch=master)](https://travis-ci.org/karen-irc/popuko)
3+
[![Build Status (master)](https://travis-ci.org/voyagegroup/popuko.svg?branch=master)](https://travis-ci.org/voyagegroup/popuko)
44

55
## What is this?
66

@@ -178,10 +178,10 @@ Auto-Merging behaves like this:
178178
### The current limitations
179179

180180
- The default branch of your repository should be named as `master`.
181-
- [TODO: #196](https://github.com/karen-irc/popuko/issues/196).
181+
- [TODO: #196](https://github.com/voyagegroup/popuko/issues/196).
182182
- If your pull request which try to be merged into non-default branch, this bot does not detect the conflict
183183
even if the upstream has been changed.
184-
- [TODO: #197](https://github.com/karen-irc/popuko/issues/197)
184+
- [TODO: #197](https://github.com/voyagegroup/popuko/issues/197)
185185

186186

187187
### Can I reuse this package as a library?
@@ -194,8 +194,8 @@ Auto-Merging behaves like this:
194194

195195
### Do you have any plan to support GitLab or GitHub Enterprise?
196196

197-
- GitLab: see [#152](https://github.com/karen-irc/popuko/issues/152).
198-
- GitHub Enterprise: [#173](https://github.com/karen-irc/popuko/issues/173).
197+
- GitLab: see [#152](https://github.com/voyagegroup/popuko/issues/152).
198+
- GitHub Enterprise: [#173](https://github.com/voyagegroup/popuko/issues/173).
199199

200200

201201
### Does this bot recommend [Trunk Based Development](https://trunkbaseddevelopment.com/) style?
@@ -205,7 +205,7 @@ Yes. This bot is designed heavily for the development style which has "trunk" br
205205
Of course, you can create a some branch on your upstream repository
206206
and you can open your pull request which would be merged into their non-trunk branch.
207207
However, we don't support the feature to conflict detection for them at this time
208-
([#197](https://github.com/karen-irc/popuko/issues/197)), and its priority is very low for us.
208+
([#197](https://github.com/voyagegroup/popuko/issues/197)), and its priority is very low for us.
209209

210210

211211
### Why didn't you fork homu?
@@ -220,16 +220,16 @@ It was notion.
220220

221221
## How to Contribute
222222

223-
- [TODO: Write CONTRUBUTING.md](https://github.com/karen-irc/popuko/issues/97)
224-
- If you have a problem, please find [existing issues](https://github.com/karen-irc/popuko/issues) at first.
225-
- If there is no one which is similar to yours, please [file it as a new issue](https://github.com/karen-irc/popuko/issues/new).
223+
- [TODO: Write CONTRUBUTING.md](https://github.com/voyagegroup/popuko/issues/97)
224+
- If you have a problem, please find [existing issues](https://github.com/voyagegroup/popuko/issues) at first.
225+
- If there is no one which is similar to yours, please [file it as a new issue](https://github.com/voyagegroup/popuko/issues/new).
226226
- We welcome your pull request. But we may not be able to accept your pull request if it is against to our project direction. Sorry.
227227

228228

229229
## TODO
230230

231231
- Intelligent cooperation with TravisCI.
232-
- [See more...](https://github.com/karen-irc/popuko/issues)
232+
- [See more...](https://github.com/voyagegroup/popuko/issues)
233233

234234

235235

epic/accept_changeset.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import (
1111

1212
"fmt"
1313

14-
"github.com/karen-irc/popuko/input"
15-
"github.com/karen-irc/popuko/operation"
16-
"github.com/karen-irc/popuko/queue"
17-
"github.com/karen-irc/popuko/setting"
14+
"github.com/voyagegroup/popuko/input"
15+
"github.com/voyagegroup/popuko/operation"
16+
"github.com/voyagegroup/popuko/queue"
17+
"github.com/voyagegroup/popuko/setting"
1818
)
1919

2020
type AcceptCommand struct {

epic/accept_changeset_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package epic
33
import (
44
"testing"
55

6-
"github.com/karen-irc/popuko/queue"
6+
"github.com/voyagegroup/popuko/queue"
77
)
88

99
func Test_queuePullReq1(t *testing.T) {

epic/assign_reviewer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66

77
"github.com/google/go-github/github"
8-
"github.com/karen-irc/popuko/operation"
8+
"github.com/voyagegroup/popuko/operation"
99
)
1010

1111
func AssignReviewer(ctx context.Context, client *github.Client, ev *github.IssueCommentEvent, assignees []string) (bool, error) {

epic/cancel_approved_changeset.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77

88
"github.com/google/go-github/github"
99

10-
"github.com/karen-irc/popuko/input"
11-
"github.com/karen-irc/popuko/operation"
12-
"github.com/karen-irc/popuko/queue"
13-
"github.com/karen-irc/popuko/setting"
10+
"github.com/voyagegroup/popuko/input"
11+
"github.com/voyagegroup/popuko/operation"
12+
"github.com/voyagegroup/popuko/queue"
13+
"github.com/voyagegroup/popuko/setting"
1414
)
1515

1616
type CancelApprovedCommand struct {

epic/check_autobranch.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"log"
77

88
"github.com/google/go-github/github"
9-
"github.com/karen-irc/popuko/operation"
10-
"github.com/karen-irc/popuko/queue"
11-
"github.com/karen-irc/popuko/setting"
9+
"github.com/voyagegroup/popuko/operation"
10+
"github.com/voyagegroup/popuko/queue"
11+
"github.com/voyagegroup/popuko/setting"
1212
)
1313

1414
func CheckAutoBranch(ctx context.Context, client *github.Client, autoMergeRepo *queue.AutoMergeQRepo, ev *github.StatusEvent) {

epic/detect_unmergeable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/google/go-github/github"
99

10-
"github.com/karen-irc/popuko/operation"
10+
"github.com/voyagegroup/popuko/operation"
1111
)
1212

1313
const masterBranchName = "master"

epic/get_repository_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"log"
88

99
"github.com/google/go-github/github"
10-
"github.com/karen-irc/popuko/setting"
10+
"github.com/voyagegroup/popuko/setting"
1111
)
1212

1313
func GetRepositoryInfo(ctx context.Context, repoSvc *github.RepositoriesService, owner, name string) *setting.RepositoryInfo {

epic/remove_all_status_label.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66

77
"github.com/google/go-github/github"
8-
"github.com/karen-irc/popuko/operation"
8+
"github.com/voyagegroup/popuko/operation"
99
)
1010

1111
func RemoveAllStatusLabel(ctx context.Context, client *github.Client, repo *github.Repository, pr *github.PullRequest) {

example.config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## The root configuration file for [popuko](https://github.com/karen-irc/popuko)
1+
## The root configuration file for [popuko](https://github.com/voyagegroup/popuko)
22

33
# The version of this configuration format.
44
config_version = 0
@@ -19,4 +19,4 @@ webhook_secret = "webhook_secret"
1919
# For security reasons, you can restrict a repository which this bot supports.
2020
# - If this list is empty, this bot accepts all webhook incoming from any repositories.
2121
# - Otherwise, this bot only accepts the webhook from repositories listed in this item.
22-
accepted_repositoies = [ "karen-irc/popuko" ]
22+
accepted_repositoies = [ "voyagegroup/popuko" ]

0 commit comments

Comments
 (0)