From 61ecc1fee4cfa80890499976afacbe27a6caef0f Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 25 Apr 2020 11:31:10 +0200 Subject: [PATCH] Fix repo name. --- tests/utils/shippable/check_matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/shippable/check_matrix.py b/tests/utils/shippable/check_matrix.py index 65a3a819b0..ca56c4db3d 100755 --- a/tests/utils/shippable/check_matrix.py +++ b/tests/utils/shippable/check_matrix.py @@ -26,7 +26,7 @@ except ImportError: def main(): # type: () -> None """Main entry point.""" repo_full_name = os.environ['REPO_FULL_NAME'] - required_repo_full_name = 'ansible-collections/general' + required_repo_full_name = 'ansible-collections/community.general' if repo_full_name != required_repo_full_name: sys.stderr.write('Skipping matrix check on repo "%s" which is not "%s".\n' % (repo_full_name, required_repo_full_name))