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
> a utility to find, and optionally remove, inactive organization members
3
2
4
-
This utility finds users inactive since a configured date, writes those users to a file `inactive_users.csv`, and optionally removes them from the organization
3
+
```
4
+
find_inactive_members.rb - Find and output inactive members in an organization
5
+
-c, --check Check connectivity and scope
6
+
-d, --date MANDATORY Date from which to start looking for activity
7
+
-e, --email Fetch the user email (can make the script take longer
8
+
-o, --organization MANDATORY Organization to scan for inactive users
9
+
-v, --verbose More output to STDERR
10
+
-h, --help Display this help
11
+
```
12
+
13
+
This utility finds users inactive since a configured date, writes those users to a file `inactive_users.csv`.
5
14
6
15
## Installation
7
16
@@ -20,27 +29,23 @@ gem install octokit
20
29
21
30
### Configure Octokit
22
31
32
+
The `OCTOKIT_ACCESS_TOKEN` is required in order to see activities on private repositories. However the `OCTOKIT_API_ENDPOINT` isn't required if connecting to GitHub.com, but is required if connecting to a GitHub Enterprise instance.
0 commit comments