Using that tool it's possible to edit as many INFO.yaml files as you wish. It's not needed to execute the same operations for each of the repository you maintain.
Nowadays only the committer deletion action is available, but addition option should be added soon.
Python 3.10 version is needed to run that tool.
It's recommended to create a virtual environment to install all dependencies. Create a virtual env using below command
$ python3.10 -m venv .virtualenv
Virtual environment will be created under .virtualenv
directory. To activate virtual environemnt call
$ source .virtualenv/bin/activate
Install Python requirements calling
$ pip install -r requirements.txt
You need to create a config
YAML file where you describe what changes you want to perform. Required YAML config structure:
--- repos: # List of the repositories which are going to be udated. # That tool is not smart enough to resolve some conflicts etc. # Please be sure that it would be possible to push the change to the gerrit. # Remember that commit-msg hook should be executed so add that script into .git/hooks dir - path: abs_path_to_the_repo # Local path to the repository branch: master # Branch which needs to be udated committers: # List of the committers which are going to be edited - name: Committer Name # The name of the committer which we would delete or add action: Deletion|Addition # Addition or deletion action link: https://link.to.the.tcs.confirmation # Link to the ONAP TSC action confirmation commit: # Configure the commit message message: # List of the commit message lines. That's optional - "[INTEGRATION] My awesome first line!" - "Even better second one!" issue_id: INT-2008 # ONAP's JIRA Issue ID is required in the commit message
$ pip install tox
$ tox .