From 5de05a6243a95c31cadaa6c92e72879b453c1ee7 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Wed, 29 Sep 2021 06:41:37 +0200 Subject: [PATCH] [PR #3462/845c4064 backport][stable-3] Enable ansibullbot notifications in issues and PRs (#3465) * Enable ansibullbot notifications in issues and PRs (#3462) The more recent version of Ansibullbot defaults notifications to false. We need to set it to true so it can notify contributors and maintainers. (cherry picked from commit 845c4064199a45d095ebf8295680ee512fe900d2) * Update botmeta sanity test to accept notifications. (cherry picked from commit 71a655193c23f983deb27c891189618fc9938738) Co-authored-by: David Moreau Simard Co-authored-by: Felix Fontein --- .github/BOTMETA.yml | 1 + tests/sanity/extra/botmeta.py | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/BOTMETA.yml b/.github/BOTMETA.yml index ecf2a04578..c346d475d1 100644 --- a/.github/BOTMETA.yml +++ b/.github/BOTMETA.yml @@ -1,3 +1,4 @@ +notifications: true automerge: true files: plugins/: diff --git a/tests/sanity/extra/botmeta.py b/tests/sanity/extra/botmeta.py index f84c7535f2..a84bf9328e 100755 --- a/tests/sanity/extra/botmeta.py +++ b/tests/sanity/extra/botmeta.py @@ -154,6 +154,7 @@ def main(): }, extra=PREVENT_EXTRA) schema = Schema({ + ('notifications'): bool, ('automerge'): bool, ('macros'): MacroSchema, ('files'): FilesSchema,