Skip to main content

Simple DCO check script to be used in any CI.

Project description

dco-check

PyPI GitHub Action Status GitLab pipeline status Travis CI Azure DevOps builds AppVeyor CircleCI codecov License

Simple DCO check script to be used in any CI.

Motivation

Many open-source projects require the use of a Signed-off-by: line in every commit message. This is to certify that a contributor has the right to submit their code according to the Developer Certificate of Origin (DCO). However, to my knowledge, there is no automated check that can run on any CI platform (or most platforms). Some platforms simply do not possess such a feature.

This was inspired by the DCO GitHub App.

How to get & use

There are two main options:

  1. Using the package from PyPI
    $ pip install dco-check
    $ dco-check
    
  2. Downloading the script and running it (you can replace master with a specific version)
    $ wget https://raw.githubusercontent.com/christophebedard/dco-check/master/dco_check/dco_check.py
    $ python3 dco_check.py
    

It exits with 0 if all checked commits have been signed-off. Otherwise, it exits with a non-zero number.

Run with --help for more information and options, including:

  • ignoring merge commits
  • default branch
  • default remote
  • quiet mode
  • verbose mode

Those options can alternatively be set through environment variables (see --help), but commandline arguments always have precedence over environment variables.

How it works

dco-check focuses on two use-cases:

  1. Commits part of a feature branch, i.e. a proposed change (pull request or merge request)
  2. Commits on the default branch, e.g. master, more specifically the new commits pushed to the default branch

The first use-case is easy to cover given a normal git repository. We can simply use git merge-base --fork-point $DEFAULT_BRANCH to get the list of commits on a specific feature branch. Then we can just check every commit using git log and make sure it is signed-off by the author.

The second use-case isn't really possible, because a git repository does not contain the necessary information (AFAIK). Fortunately, some CIs do provide this information.

Furthermore, by default, some CI platforms only clone git repositories up to a specific depth, i.e. you only get a partial commit history. This depth can sometimes be 1 for some CIs. For those cases, it is usually possible to prevent shallow cloning by setting the right parameter(s) in the job configuration. However, since one of the goals of dco-check is to be as easy to use as possible, it tries not to rely on that.

This is why dco-check detects the current CI platform and uses whatever information that platform can provide. Otherwise, it falls back on a default generic implementation which uses simple git commands.

Python version support

Python 3.6+ is required because of the use of f-strings. However, it shouldn't be too hard to remove them to support older versions of Python 3, if there is demand for it, or if such a change is contributed to dco-check.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dco-check-0.0.6.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

dco_check-0.0.6-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file dco-check-0.0.6.tar.gz.

File metadata

  • Download URL: dco-check-0.0.6.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for dco-check-0.0.6.tar.gz
Algorithm Hash digest
SHA256 6be7e5f978f36e1906f9535dc24b53df9811d1c0be1921c1dcfc53aa4a2f91b5
MD5 07dd050311574c0e2bcde0262e4c99a1
BLAKE2b-256 36485bf06c2d40d72c63dad939ac99aa03d494dc15b4077abe5ef14af7a7e384

See more details on using hashes here.

File details

Details for the file dco_check-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: dco_check-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 16.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for dco_check-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 f796aea11ad5fbb404142501d2f119d8132d1652d2c34bd4f05c94a22d11d24f
MD5 9b53670cd101ae70a6a9bd0316b3848b
BLAKE2b-256 5a1d0c5d60bcdb109f6d446d2c46555427ce5d9530ae07605616a1fe06adad1c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page