-
Notifications
You must be signed in to change notification settings - Fork 33
/
action.yml
39 lines (31 loc) · 1.05 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: GitHub Organization User Activity Report
description: Generates a summary of user activity for an organization
author: Peter Murray
inputs:
token:
description: GitHub Access Token with permissions for accesing Repositories and Organization data.
required: true
outputDir:
description: The output directory for the generated report(s).
required: true
default: ${{ github.workspace }}
organization:
description: The organization that is to be processed to detect inactive users
required: true
since:
description: A date time in ISO 8601 format YYYY-MM-DDTHH:mm:ss. If specified activity_days will be ignored.
required: false
activity_days:
description: The number of days in the past to check for activity, this will be ignored if 'since' parameter is used.
required: true
default: 30
octokit_max_retries:
description: Maximum number of retires when using the Octokit REST API
required: true
default: 15
runs:
using: node12
main: dist/index.js
branding:
icon: users
color: orange