Skip to content

Instantly share code, notes, and snippets.

@aviadlevy
aviadlevy / config.yml
Created April 11, 2019 06:54
Configuration for git-chglog
style: gitlab
template: CHANGELOG.tpl.md
info:
title: CHANGELOG
repository_url: https://*******
options:
commits:
filters:
Type:
- feat
#!/usr/bin/env python
import os
import semver
import subprocess
import sys
def git(*args):
return subprocess.check_output(["git"] + list(args))