Metadata-Version: 2.1
Name: dco-org-check
Version: 0.1
Summary: Script to check a GitHub org for commits without a DCO signoff that should have one.
Home-page: https://github.com/jmertic/dco-org-check
Author: John Mertic
Author-email: jmertic@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

Script to check a GitHub org for commits without a DCO signoff that should have one.

Loads config file ( defaults to dco_org_check.yaml, or specify at the command line after -c ) for credentials

Config file options ( set argument is the default if not specified )
```yaml
# GitHub access token ( required )
token: 
# Github org name ( required )
org: 
# name of csvfile
csvfile: dco_issues.csv 
# directory where previous commit signoffs are in the repo
dco_signoffs_directory: dco-signoffs 
# set to 1 if you want to have the script create the previous commits signoff files
create_prior_commits_file: 1 
# directory where to store the prior commits files
create_prior_commits_dir: dco-signoffs 
# list of repos to ignore when scanning
ignore_repos: 
  - repo1
  - repo2
  - ...
# list of repos to only look at when scanning
only_repos: 
  - repo1
  - repo2
  - ...
```

SPDX-License-Identifier: Apache-2.0


