github_workflow 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/github_workflow/cli.rb +1 -1
- data/lib/github_workflow/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7580dc54bf377d2f933a99075f5beceeea72dafa7e762a0f115d778d5cc7f9a1
|
4
|
+
data.tar.gz: f4904e4822f7d8cdc055055a9042ed7fbed11e7dbc1731fdc3b0a355a64f1b1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec90ff6d6108c21ddb5af9e380dd5b81140dbb1f648daf392594417f4553c534190ea33c9b3e4d0c5b5e5743fb5bf4e28e2367c9826d567f1b237e54c29c5558
|
7
|
+
data.tar.gz: d646ba0cbc3e72e5616968a23c53a2fc0714a74b1f8bdb143bb8aa9f636826b339ba304892b3faa206d3ace8be0e4c64487795349f77e0f1844587104bf8d728
|
data/README.md
CHANGED
@@ -12,4 +12,5 @@ Commands:
|
|
12
12
|
github_workflow push_and_pr # Push branch to origin and convert Issue to Pull Request
|
13
13
|
github_workflow start -i, --issue-id=ISSUE_ID # Create branch named with issue number and issue title
|
14
14
|
github_workflow status # Check PR CI status
|
15
|
+
github_workflow reviews # Print out reviewers list and their PRs count
|
15
16
|
```
|
data/lib/github_workflow/cli.rb
CHANGED
@@ -179,7 +179,7 @@ module GithubWorkflow
|
|
179
179
|
end
|
180
180
|
|
181
181
|
def get_prs_list
|
182
|
-
JSON.parse(github_client.get("repos/#{user_and_repo}/pulls
|
182
|
+
JSON.parse(github_client.get("repos/#{user_and_repo}/pulls?per_page=100").body)
|
183
183
|
end
|
184
184
|
|
185
185
|
def create_branch
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github_workflow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Liscio
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|