From 52446beab6e00e3d15ba2107f4531670962a37e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 12:26:58 +0000 Subject: [PATCH 01/72] ci: This PR is to trigger periodic CI testing --- tests/callback_plugins/dump_packages.py | 48 +++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 tests/callback_plugins/dump_packages.py diff --git a/tests/callback_plugins/dump_packages.py b/tests/callback_plugins/dump_packages.py new file mode 100644 index 0000000..3ec9cf1 --- /dev/null +++ b/tests/callback_plugins/dump_packages.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2023, Red Hat, Inc. +# SPDX-License-Identifier: MIT + +from __future__ import absolute_import, division, print_function + +__metaclass__ = type + +DOCUMENTATION = """ + author: Rich Megginson + name: dump_packages + type: aggregate + short_description: dump arguments to package module + description: + - Dump arguments to package module to get list of packages. + - Used in conjunction with CI testing to get the packages used + - with all combinations of: distribution/version/role arguments + - Used to generate lists of packages for ostree image builds. + requirements: + - None +""" + +from ansible.plugins.callback import CallbackBase # noqa: E402 + + +class CallbackModule(CallbackBase): + """ + Dump packages. + """ + + CALLBACK_VERSION = 2.0 + CALLBACK_TYPE = "aggregate" + CALLBACK_NAME = "dump_packages" + # needed for 2.9 compatibility + CALLBACK_NEEDS_WHITELIST = False # wokeignore:rule=whitelist + CALLBACK_NEEDS_ENABLED = False + + def __init__(self, *args, **kwargs): + super(CallbackModule, self).__init__(*args, **kwargs) + + def v2_runner_on_ok(self, result): + fields = result._task_fields + if fields["action"] == "package" and fields["args"].get("state") != "absent": + if isinstance(fields["args"]["name"], list): + packages = " ".join(fields["args"]["name"]) + else: + packages = fields["args"]["name"] + self._display.display("lsrpackages: " + packages) From e98a96080b218d13ae96b6430c2108e984380137 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 22:59:33 +0000 Subject: [PATCH 02/72] ci: This PR is to trigger periodic CI testing --- tests/callback_plugins/dump_packages.py | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/tests/callback_plugins/dump_packages.py b/tests/callback_plugins/dump_packages.py index 3ec9cf1..15aa6db 100644 --- a/tests/callback_plugins/dump_packages.py +++ b/tests/callback_plugins/dump_packages.py @@ -41,8 +41,19 @@ def __init__(self, *args, **kwargs): def v2_runner_on_ok(self, result): fields = result._task_fields if fields["action"] == "package" and fields["args"].get("state") != "absent": - if isinstance(fields["args"]["name"], list): - packages = " ".join(fields["args"]["name"]) - else: - packages = fields["args"]["name"] - self._display.display("lsrpackages: " + packages) + packages = set() + if "invocation" in result._result: + results = [result._result] + elif "results" in result._result and isinstance( + result._result["results"], list + ): + results = result._result["results"] + for item in results: + pkgs = item["invocation"]["module_args"]["name"] + if isinstance(pkgs, list): + for ii in pkgs: + packages.add(ii) + else: + packages.add(pkgs) + + self._display.display("lsrpackages: " + " ".join(sorted(list(packages)))) From 08583740dda3d59f493c396852fc8000d45b0f48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 12:27:01 +0000 Subject: [PATCH 03/72] ci: This PR is to trigger periodic CI testing From 6184de2d78323cb05a42fa09cc27c1ddbb568a8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 12:26:54 +0000 Subject: [PATCH 04/72] ci: This PR is to trigger periodic CI testing From 47f1ee455d345d2e6b1c58d18675f89601f55c60 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 12:26:27 +0000 Subject: [PATCH 05/72] ci: This PR is to trigger periodic CI testing From 9c443c826e793b05217a28a78f6fa95dd5952179 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 12:26:33 +0000 Subject: [PATCH 06/72] ci: This PR is to trigger periodic CI testing From f2653bc6dbfa0c84bea991cec4079ab35a8d2abd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 12:26:51 +0000 Subject: [PATCH 07/72] ci: This PR is to trigger periodic CI testing --- tests/callback_plugins/dump_packages.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/callback_plugins/dump_packages.py b/tests/callback_plugins/dump_packages.py index 15aa6db..89a343d 100644 --- a/tests/callback_plugins/dump_packages.py +++ b/tests/callback_plugins/dump_packages.py @@ -40,7 +40,10 @@ def __init__(self, *args, **kwargs): def v2_runner_on_ok(self, result): fields = result._task_fields - if fields["action"] == "package" and fields["args"].get("state") != "absent": + if ( + fields["action"] in ["package", "dnf", "yum"] + and fields["args"].get("state") != "absent" + ): packages = set() if "invocation" in result._result: results = [result._result] From 0116becdad631e609ae4a37fed452537046d1460 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 12:27:38 +0000 Subject: [PATCH 08/72] ci: This PR is to trigger periodic CI testing From ca18af33baa83fb0ba34566d152a7e902e2a1e50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 12:27:22 +0000 Subject: [PATCH 09/72] ci: This PR is to trigger periodic CI testing From 89f50bdb625f30dfddef1f560250ce64abf3da42 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 12:26:57 +0000 Subject: [PATCH 10/72] ci: This PR is to trigger periodic CI testing From feb1dcd43f1ca221ffd8efef3852b7b4cab2a7de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 12:27:22 +0000 Subject: [PATCH 11/72] ci: This PR is to trigger periodic CI testing From 59039020e23d9b0db5a6f111bc512a895b32d442 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 12:27:22 +0000 Subject: [PATCH 12/72] ci: This PR is to trigger periodic CI testing From 3ce5087e6b129e62bb0d898e0b8c8ff6e8b8ba29 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 12:26:20 +0000 Subject: [PATCH 13/72] ci: This PR is to trigger periodic CI testing From 62af5eed7d65bcae65510f1e70c2fb0f825d93ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 12:26:55 +0000 Subject: [PATCH 14/72] ci: This PR is to trigger periodic CI testing From 3f89b2d094bcc393f8700362674bd814e7ccb1bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 12:27:32 +0000 Subject: [PATCH 15/72] ci: This PR is to trigger periodic CI testing From f745ea5e9a53a652f21320eab04c0a531db35745 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 12:27:54 +0000 Subject: [PATCH 16/72] ci: This PR is to trigger periodic CI testing From 4d059ef2b75e4aa4e8eeb3ba8ed455c90b4e0e72 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 12:27:45 +0000 Subject: [PATCH 17/72] ci: This PR is to trigger periodic CI testing From 6dcbc693c01232bb013e1b01a07526f72d067202 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 12:24:18 +0000 Subject: [PATCH 18/72] ci: This PR is to trigger periodic CI testing From 93519f43d76895f7509d78706a8ce109cdabd987 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 12:25:40 +0000 Subject: [PATCH 19/72] ci: This PR is to trigger periodic CI testing From 22a8a72d39de6478d7de7a39b68e9f9f505f04c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 12:25:50 +0000 Subject: [PATCH 20/72] ci: This PR is to trigger periodic CI testing From f00930fd168fe7638ceb49f42ecffa69cb211241 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:25:14 +0000 Subject: [PATCH 21/72] ci: This PR is to trigger periodic CI testing From 75770cf40b5dd6dc575a6621d31aa7184f4ea0bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 12:25:10 +0000 Subject: [PATCH 22/72] ci: This PR is to trigger periodic CI testing From ae518e00f911ae80d53b4e22ae79a85f6bdc6e69 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 12:25:18 +0000 Subject: [PATCH 23/72] ci: This PR is to trigger periodic CI testing From db087d1643dfc8a1b6242ea698603239f6874d4a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 12:24:37 +0000 Subject: [PATCH 24/72] ci: This PR is to trigger periodic CI testing From d86d8ce64b18760ddc7dff46ae591be10aeb89ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:27:51 +0000 Subject: [PATCH 25/72] ci: This PR is to trigger periodic CI testing From 49a55f64b16382f01348e7ac1f38027987c64fd6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 12:28:24 +0000 Subject: [PATCH 26/72] ci: This PR is to trigger periodic CI testing From dad84ccd1fe0e7dea319a9ecb293d7130a0def1b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 12:25:18 +0000 Subject: [PATCH 27/72] ci: This PR is to trigger periodic CI testing From 96e10dab0e9ad367c3e0482034541614e0115e83 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:26:28 +0000 Subject: [PATCH 28/72] ci: This PR is to trigger periodic CI testing From 977f4917bbfffca02d9f0d720322c329d1c7db7c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 12:24:07 +0000 Subject: [PATCH 29/72] ci: This PR is to trigger periodic CI testing From e0b95789d68016c33f8abfca05e4dc7603925b40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 12:26:39 +0000 Subject: [PATCH 30/72] ci: This PR is to trigger periodic CI testing From ee75c7a84db413f8564c2bce24cd844d6128a5e8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 12:26:28 +0000 Subject: [PATCH 31/72] ci: This PR is to trigger periodic CI testing From 9cab983bf78fbdd9a8da59801e62a68dc2b31664 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 12:27:00 +0000 Subject: [PATCH 32/72] ci: This PR is to trigger periodic CI testing From 78d60d8822775afdfcfbc279aa4642b90f9c0d06 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 12:27:58 +0000 Subject: [PATCH 33/72] ci: This PR is to trigger periodic CI testing From edfe393c00a1237d723ef68cd670279aeac6ca42 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 12:28:37 +0000 Subject: [PATCH 34/72] ci: This PR is to trigger periodic CI testing From 221e04e30aa8ce4203ea545c7f3b22ab924de84c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 12:29:10 +0000 Subject: [PATCH 35/72] ci: This PR is to trigger periodic CI testing From 0039ad893b0484bb87156fe06adf430f97eaee87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 12:29:27 +0000 Subject: [PATCH 36/72] ci: This PR is to trigger periodic CI testing From 5b1036a5a42621c100ef805c684d1b2b4bc65649 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 12:28:51 +0000 Subject: [PATCH 37/72] ci: This PR is to trigger periodic CI testing From a5d6536a3833d80616da7047708b6fe731dfff4e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 12:30:34 +0000 Subject: [PATCH 38/72] ci: This PR is to trigger periodic CI testing From 0bb5ef72a16d9e805018e86adb0584d8d931fe5b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Jun 2024 12:29:58 +0000 Subject: [PATCH 39/72] ci: This PR is to trigger periodic CI testing From 4eabe47d4dbe92b353f3a9a2b4c80618091d3005 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:30:54 +0000 Subject: [PATCH 40/72] ci: This PR is to trigger periodic CI testing From 246750c6382e85e4a9c57396150ad0719a06bf4d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jul 2024 12:30:01 +0000 Subject: [PATCH 41/72] ci: This PR is to trigger periodic CI testing From 8aaa2d23e902707189f2d1b9c68bca74c33fea66 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 12:30:04 +0000 Subject: [PATCH 42/72] ci: This PR is to trigger periodic CI testing From 2e097f5c46f2a4f0966b3ff0bfb6746b61645c3a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 12:30:33 +0000 Subject: [PATCH 43/72] ci: This PR is to trigger periodic CI testing From b926f924f617b3b4e47d56b0ef15e2428a2e7f2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 12:33:25 +0000 Subject: [PATCH 44/72] ci: This PR is to trigger periodic CI testing From 46daf101b1b6562f0cbe72b58972ea44262b3dba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Aug 2024 12:30:49 +0000 Subject: [PATCH 45/72] ci: This PR is to trigger periodic CI testing --- tests/callback_plugins/dump_packages.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/callback_plugins/dump_packages.py b/tests/callback_plugins/dump_packages.py index 89a343d..433fe54 100644 --- a/tests/callback_plugins/dump_packages.py +++ b/tests/callback_plugins/dump_packages.py @@ -58,5 +58,7 @@ def v2_runner_on_ok(self, result): packages.add(ii) else: packages.add(pkgs) - + # tell python black that this line is ok + # fmt: off self._display.display("lsrpackages: " + " ".join(sorted(list(packages)))) + # fmt: on From 8135edae7dabf2b171fa7bed53c1dc0c6aad7428 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 12:32:03 +0000 Subject: [PATCH 46/72] ci: This PR is to trigger periodic CI testing From 8842e812b5c23af1657eab7613419b9c86171622 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 12:30:41 +0000 Subject: [PATCH 47/72] ci: This PR is to trigger periodic CI testing From c8c953693cd58702e4697c545130e26ec7b1c47b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 12:32:20 +0000 Subject: [PATCH 48/72] ci: This PR is to trigger periodic CI testing From 3ff7d6789f3c2209f937a7b2e900819685c47941 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 12:33:00 +0000 Subject: [PATCH 49/72] ci: This PR is to trigger periodic CI testing From de7c2bbcff90ec5ffc22e6f451cf9612bf6e980c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 12:32:33 +0000 Subject: [PATCH 50/72] ci: This PR is to trigger periodic CI testing From 527541ee4c283d73bda84e67059b202f1a1ab010 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 12:33:47 +0000 Subject: [PATCH 51/72] ci: This PR is to trigger periodic CI testing From c214fb417353f399b552b2fbf85fd31a38a95cd7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 12:33:40 +0000 Subject: [PATCH 52/72] ci: This PR is to trigger periodic CI testing From 8e3c35231c7b581329f4ae46ef828b8bde011a3a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 12:39:13 +0000 Subject: [PATCH 53/72] ci: This PR is to trigger periodic CI testing From 4e44f19614b7d798a37a312fae08e353d231db48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 12:35:07 +0000 Subject: [PATCH 54/72] ci: This PR is to trigger periodic CI testing From e7fa41153854943ceb186426be194359e06f7300 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Oct 2024 15:44:02 +0000 Subject: [PATCH 55/72] ci: This PR is to trigger periodic CI testing From 1afe014b441348a925ee0681b64fb81a3c8588d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 12:35:25 +0000 Subject: [PATCH 56/72] ci: This PR is to trigger periodic CI testing From b1eee7742ce9668437ab5a1c200c0d6c86316d3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 12:35:08 +0000 Subject: [PATCH 57/72] ci: This PR is to trigger periodic CI testing From 737d52983b201449b9f67257034a9be8c0d698ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 12:35:17 +0000 Subject: [PATCH 58/72] ci: This PR is to trigger periodic CI testing From 8ae47f8695e747f14e20ce91e9f09eddb3a4ec24 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 14:11:09 +0000 Subject: [PATCH 59/72] ci: This PR is to trigger periodic CI testing From 405e94bf5ebdf4ed2148d080e715d7ccce001857 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 16:18:11 +0000 Subject: [PATCH 60/72] ci: This PR is to trigger periodic CI testing From 215cfdb19d59cfecadf5fcc88b292045b8d631bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 12:36:04 +0000 Subject: [PATCH 61/72] ci: This PR is to trigger periodic CI testing From 450006dc928daa4bf40da2c7c5fc9e5345b1f0a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 12:36:56 +0000 Subject: [PATCH 62/72] ci: This PR is to trigger periodic CI testing From 6eee4f5fbe0a1a51ac1d6e6cd0a568054f71de10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 12:37:39 +0000 Subject: [PATCH 63/72] ci: This PR is to trigger periodic CI testing From 765a0f2f7a95aee524596201bdd227f81707cda7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:37:33 +0000 Subject: [PATCH 64/72] ci: This PR is to trigger periodic CI testing From 9e680e2e5f453971bc74cc403b0d94297a0ba654 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 12:34:35 +0000 Subject: [PATCH 65/72] ci: This PR is to trigger periodic CI testing From f66211a12444542283fd2e084f557ed3aa718c7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 12:35:08 +0000 Subject: [PATCH 66/72] ci: This PR is to trigger periodic CI testing From a1cd9eb95279341da352447b22d7801536f06594 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 12:35:39 +0000 Subject: [PATCH 67/72] ci: This PR is to trigger periodic CI testing From a8ebf96c0a2ae62095a4b9378c3a845b1581e404 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2025 12:35:30 +0000 Subject: [PATCH 68/72] ci: This PR is to trigger periodic CI testing From 637765b82a5342c343ee8144ed8b5b176f0cd8bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 12:38:04 +0000 Subject: [PATCH 69/72] ci: This PR is to trigger periodic CI testing From 7fd9e278a16a428589f2e5f6b0ea054f9b6c7e42 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Jan 2025 12:33:29 +0000 Subject: [PATCH 70/72] ci: This PR is to trigger periodic CI testing From 8740b12615f18c20f7004513fda727e47c968e8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Feb 2025 16:19:55 +0000 Subject: [PATCH 71/72] ci: This PR is to trigger periodic CI testing From 9b6ec529d7cef32b30dc12691b46269f2fbc5946 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Feb 2025 12:34:08 +0000 Subject: [PATCH 72/72] ci: This PR is to trigger periodic CI testing