fedmsg / irc: adjust #fedora-flatpaks bot a bit

Try to limit the messages to PRs and git commits in flatpaks/
namespace, and bodhi FEDORA-FLATPAK updates.

Signed-off-by: Kalev Lember <klember@redhat.com>
This commit is contained in:
Kalev Lember 2023-02-01 23:04:43 +01:00
parent b08a95a1d6
commit 6fbab55010

View file

@ -697,12 +697,13 @@ config = dict(
nickname='fm-flatpaks', nickname='fm-flatpaks',
{% endif %} {% endif %}
channel='fedora-flatpaks', channel='fedora-flatpaks',
# show PRs and git commits for flatpaks/ namespace, and bodhi FEDORA-FLATPAK updates
filters=dict( filters=dict(
topic=[ topic=[
'^((?!(pagure)).)*$', '^((?!(pagure\.pull-request|git\.receive|bodhi\.update)).)*$',
], ],
body=[ body=[
'^((?!(flatpaks)).)*$', '^((?!(flatpaks\/|FEDORA-FLATPAK)).)*$',
], ],
), ),
), ),