Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.05 KB

File metadata and controls

31 lines (26 loc) · 1.05 KB

Contributor Guide

License Automation

If the CI asks you to update the file licenses, follow one of these:

  1. Update the headers manually (look at the existing files), something like this:
    # SPDX-FileCopyrightText: %year% %your name% <%your contact info, e.g. email%>
    #
    # SPDX-License-Identifier: MIT
    
    (accommodate to the file's comment style if required).
  2. Alternately, use the REUSE tool:
    $ reuse annotate --license MIT --copyright '%your name% <%your contact info, e.g. email%>' %file names to annotate%

(Feel free to attribute the changes to "codingteam/devops contributors https://github.com/codingteam/devops" instead of your name in a multi-author file, or if you don't want your name to be mentioned in the project's source: this doesn't mean you'll lose the copyright.)