Skip to content

Commit 9c83e93

Browse files
authored
Merge pull request #26 from nicklegan/v2.0.0
Release v2.0.0
2 parents 1a155fd + f41e8d1 commit 9c83e93

File tree

13 files changed

+2411
-765
lines changed

13 files changed

+2411
-765
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ A clear and concise description of what you expected to happen.
2323

2424
### Additional context
2525

26-
Add any other context about the problem here.
26+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
blank_issues_enabled: false
22

33
contact_links:
4-
- name: GitHub Professional Services
4+
- name: GitHub Expert Services
55
url: https://services.github.com/#contact
6-
about: Contact GitHub Professional Services
6+
about: Contact GitHub Expert Services
7+

.github/contributing.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ If you are the current maintainer of this action:
5050
[pulls]: https://github.com/github/github-demo-stack/pulls
5151
[pr]: https://github.com/github/github-demo-stack/compare
5252
[fork]: https://github.com/github/github-demo-stack/fork
53-
5453
# Contributing
5554

5655
:wave: Hi there!
@@ -102,4 +101,4 @@ If you are the current maintainer of this action:
102101

103102
[pulls]: https://github.com/github/github-demo-stack/pulls
104103
[pr]: https://github.com/github/github-demo-stack/compare
105-
[fork]: https://github.com/github/github-demo-stack/fork
104+
[fork]: https://github.com/github/github-demo-stack/fork

.github/dependabot.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
version: 2
22
updates:
3-
- package-ecosystem: 'github-actions'
4-
directory: '/'
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
55
schedule:
6-
interval: 'monthly'
6+
interval: "monthly"
77

8-
- package-ecosystem: 'npm'
9-
directory: '/'
8+
- package-ecosystem: "npm"
9+
directory: "/"
1010
schedule:
11-
interval: 'monthly'
11+
interval: "monthly"
12+

.github/security.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Security Policy
22

3-
If you discover a security issue in this repo, please submit it to [GitHub Professional Services](https://services.github.com/#contact).
3+
If you discover a security issue in this repo, please submit it to [GitHub Expert Services](https://services.github.com/#contact).
44

5-
Thanks for helping make GitHub Actions safe for everyone.
5+
Thanks for helping make GitHub Actions safe for everyone.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 95 additions & 65 deletions
Large diffs are not rendered by default.

action.yml

Lines changed: 27 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,11 @@ inputs:
1515
required: false
1616
sort:
1717
description: 'Select sorting column'
18-
# openedPullRequests, openedPullRequestsInternal, openedPullRequestsExternal, openedPullRequestsFirstTimeContributor, mergedPullRequests, closedPullRequests
19-
# openPullRequests, averagePullRequestMergeTime, pullRequests, internalPullRequests, externalPullRequests
20-
# openedIssues, openedIssuesInternal, openedIssuesExternal, openedIssuesFirstTimeContributor, closedIssues
21-
# issues, internalIssues, externalIssues, openIssues, staleIssues, percentStaleIssues, oldIssues, percentOldIssues, percentOldIssues, percentIssuesClosedByPullRequest, averageIssueOpenTime
22-
# contributorsThisPeriod, contributorsThisPeriodInternal, contributorsThisPeriodExternal, contributorsThisPeriodFirstTimeContributor
23-
# contributorsAllTime, contributorsAllTimeInternal, contributorsAllTimeExternal
24-
# stars, watches, forks
2518
default: 'openedPullRequests'
2619
required: false
27-
committer-name:
28-
description: 'The name of the committer that will appear in the Git history'
29-
default: 'github-actions'
30-
required: false
31-
committer-email:
32-
description: 'The committer email that will appear in the Git history'
33-
default: 'github-actions@github.com'
20+
sort-order:
21+
description: 'Selected column sorting direction'
22+
default: 'desc'
3423
required: false
3524
stale:
3625
description: 'Amount of days for an issue to be marked as stale'
@@ -40,17 +29,39 @@ inputs:
4029
description: 'Amount of days for an issue to be marked as old'
4130
default: '120'
4231
required: false
32+
json:
33+
description: 'Optional report export in JSON format'
34+
default: 'false'
35+
required: false
36+
diff-report:
37+
description: 'Use identical file name for future reports'
38+
default: 'false'
39+
required: false
4340
fromdate:
4441
description: 'The date from which to start collecting data'
4542
required: false
4643
todate:
4744
description: 'The date to which to stop collecting data'
4845
required: false
46+
committer-name:
47+
description: 'The name of the committer that will appear in the Git history'
48+
default: 'github-actions'
49+
required: false
50+
committer-email:
51+
description: 'The committer email that will appear in the Git history'
52+
default: 'github-actions@github.com'
53+
required: false
54+
appid:
55+
required: false
56+
privatekey:
57+
required: false
58+
installationid:
59+
required: false
4960

5061
runs:
51-
using: 'node12'
62+
using: 'node16'
5263
main: 'dist/index.js'
5364

5465
branding:
5566
icon: 'list'
56-
color: 'blue'
67+
color: 'blue'

dist/index.js

Lines changed: 4 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)