From 7b87722f29606d39b410a32d5aa12d76e9afa842 Mon Sep 17 00:00:00 2001 From: Nathan Cutler Date: Sun, 26 Mar 2017 18:46:11 +0200 Subject: [PATCH] tools: ceph-release-notes: document global variables Document the global variables we introduce in this patch set. Signed-off-by: Nathan Cutler --- src/script/ceph-release-notes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/script/ceph-release-notes b/src/script/ceph-release-notes index 291464550f1..11667eacaf8 100755 --- a/src/script/ceph-release-notes +++ b/src/script/ceph-release-notes @@ -35,10 +35,12 @@ from git import Repo fixes_re = re.compile(r"Fixes\:? #(\d+)") +# labels is the list of relevant labels defined for github.com/ceph/ceph labels = [ 'bluestore', 'build/ops', 'cephfs', 'common', 'core', 'mgr', 'mon', 'performance', 'pybind', 'rdma', 'rgw', 'rbd', 'tests', 'tools' ] merge_re = re.compile("Merge pull request #(\d+).*") +# prefixes is the list of commit description prefixes we recognize prefixes = [ 'bluestore', 'build/ops', 'cephfs', 'cephx', 'cli', 'cmake', 'common', 'core', 'crush', 'doc', 'fs', 'librados', 'librbd', 'log', 'mds', 'mgr', 'mon', 'msgr', 'objecter', 'osd', 'rbd', -- 2.47.3