You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
-
# ghp-repo-sync
1
+
# ghp-sync
2
2
3
3
This is an application for dealing with GitHub Project Boards. This is intended to make sorting through issues and PRs in large repos faster and easier via the GitHub Project Board.
4
4
5
5
It can automatically add Issues or PRs to Project Boards based on the repo, organization, and project number.
6
6
7
7
When adding Issues to Project Boards with the Issue # and number of Days Open.
8
8
9
-
ghp-repo-sync is still a work in progress with more automation to come in future!
9
+
ghp-sync is still a work in progress with more automation to come in future!
10
10
11
11
## Installation
12
12
13
-
To install ghp-repo-sync from the command line, you can run:
13
+
To install ghp-sync from the command line, you can run:
Copy file name to clipboardexpand all lines: cli/cmds.go
+2-2
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ package cli
3
3
import (
4
4
"fmt"
5
5
6
-
"github.com/katbyte/ghp-repo-sync/version"// todo - should we rename this (again) to ghp-sync ? if it can do project <> project & jira <> gh TODO yes we should
6
+
"github.com/katbyte/ghp-sync/version"// todo - should we rename this (again) to ghp-sync ? if it can do project <> project & jira <> gh TODO yes we should
pflags.StringSliceVarP(&flags.Filters.Assignees, "assignees", "", []string{}, "sync prs assigned to these users. ie 'katbyte,assignee2,assignee3'")
76
80
pflags.StringSliceVarP(&flags.Filters.LabelsOr, "labels-or", "l", []string{}, "filter that match any label conditions. ie 'label1,label2,-not-this-label'")
77
81
pflags.StringSliceVarP(&flags.Filters.LabelsAnd, "labels-and", "", []string{}, "filter that match all label conditions. ie 'label1,label2,-not-this-label'")
82
+
pflags.StringVarP(&flags.Filters.ProjectStatusIs, "project-status-is", "", "", "filter that match project status. ie 'In Progress'")
83
+
pflags.StringSliceVarP(&flags.Filters.ProjectFieldPopulated, "project-fields-populated", "", []string{}, "filter that match project fields populated. ie 'Due Date'")
0 commit comments