summaryrefslogtreecommitdiffstats
path: root/scripts/jira/jira-bug-closer/main.py
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@qt.io>2019-03-26 09:27:36 +0100
committerFrederik Gladhorn <frederik.gladhorn@qt.io>2019-03-29 11:46:56 +0000
commitba041bc942056d52804acd5011ae5fe7877be045 (patch)
treef1a4540219f5287f395b6d9d1e9eb6e1695048ba /scripts/jira/jira-bug-closer/main.py
parentdc4cbd9fb654c1c0e06f7ea3183602fa714c4cb6 (diff)
Initial version of the JIRA-Gerrit bot
This bot listens to Gerrit ssh events and closes JIRA issues when the commit message contains a Fixes: QTBUG-### line. Change-Id: I6d68b69e624143e2aae84ad0b172583d3855703d Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@qt.io>
Diffstat (limited to 'scripts/jira/jira-bug-closer/main.py')
-rwxr-xr-xscripts/jira/jira-bug-closer/main.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/scripts/jira/jira-bug-closer/main.py b/scripts/jira/jira-bug-closer/main.py
new file mode 100755
index 00000000..3be1712d
--- /dev/null
+++ b/scripts/jira/jira-bug-closer/main.py
@@ -0,0 +1,42 @@
+#!/usr/bin/env python3
+#############################################################################
+##
+## Copyright (C) 2019 The Qt Company Ltd.
+## Contact: https://www.qt.io/licensing/
+##
+## This file is part of the Quality Assurance module of the Qt Toolkit.
+##
+## $QT_BEGIN_LICENSE:GPL-EXCEPT$
+## Commercial License Usage
+## Licensees holding valid commercial Qt licenses may use this file in
+## accordance with the commercial license agreement provided with the
+## Software or, alternatively, in accordance with the terms contained in
+## a written agreement between you and The Qt Company. For licensing terms
+## and conditions see https://www.qt.io/terms-conditions. For further
+## information use the contact form at https://www.qt.io/contact-us.
+##
+## GNU General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU
+## General Public License version 3 as published by the Free Software
+## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+## included in the packaging of this file. Please review the following
+## information to ensure the GNU General Public License requirements will
+## be met: https://www.gnu.org/licenses/gpl-3.0.html.
+##
+## $QT_END_LICENSE$
+##
+#############################################################################
+
+from bot import Bot
+from logger import logger
+
+
+log = logger("main")
+
+
+if __name__ == "__main__":
+ try:
+ bot = Bot()
+ bot.run()
+ except KeyboardInterrupt:
+ log.info("Stopped by keyboard interrupt.")