Skip to content

Commit 548a46e

Browse files
committed
Initial README.md
1 parent cb90fd2 commit 548a46e

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# go-github-issues-mover
2+
3+
An automatic issue migration tool from one github repository to another.
4+
5+
## Features
6+
- Auto create destination repository
7+
- Auto invite all contributors from source repository
8+
- Auto accept invitations for contributors that tool has tokens for
9+
- Auto migrate labels
10+
- Auto issue creation
11+
- Auto issue comment creation
12+
13+
## Example configuration
14+
```yaml
15+
source:
16+
token: asdzaf89asd7a8asd # From https://github.com/settings/tokens/new (With only "repo" scope)
17+
repo:
18+
owner: UnAfraid # Source name/organization
19+
name: go-github-issues-mover # Source repository name
20+
21+
destination:
22+
token: asdzaf89asd7a8asd # From https://github.com/settings/tokens/new (With only "repo" scope)
23+
repo:
24+
owner: UnAfraid # Destination name/organization
25+
name: go-github-issues-mover-v2 # Destination repository name
26+
private: true # Used only when destination repo doesn't exists, private repository will be created if true, public if false
27+
contributors:
28+
unafraid: asdzaf89asd7a8asd # From https://github.com/settings/tokens/new (With only "repo" scope)
29+
anotherUser: zasdasdasdasdasda # From https://github.com/settings/tokens/new (With only "repo" scope)
30+
31+
```

0 commit comments

Comments
 (0)