From f81307078804e287dace53e46f3bed70da4cf539 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 18:20:28 +0000 Subject: [PATCH 01/69] 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 7ed35bd63561d4c4feb2133af81b23431e4e9d55 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:28 +0000 Subject: [PATCH 02/69] 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 54b0c090a427d469395f2edb6202f487d5e4052a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 18:20:33 +0000 Subject: [PATCH 03/69] ci: This PR is to trigger periodic CI testing From 319b2811d5cfef252be4b42ce6492c7f4249102c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 18:20:35 +0000 Subject: [PATCH 04/69] ci: This PR is to trigger periodic CI testing From feb5d94c9edf0f8419d1e1c9d4d7148f7036c061 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 18:20:38 +0000 Subject: [PATCH 05/69] ci: This PR is to trigger periodic CI testing From 84fd1d667ef477074fa1826e238b4aefa94cb688 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 18:20:41 +0000 Subject: [PATCH 06/69] ci: This PR is to trigger periodic CI testing From 94a2ba562cfe8c71bc132833d85c867239d5c262 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 18:20:07 +0000 Subject: [PATCH 07/69] 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 8ea50dbb974a5feb1d61223969054fb42d7a2ae7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 18:20:53 +0000 Subject: [PATCH 08/69] ci: This PR is to trigger periodic CI testing From a9124c271efa4003a57971edf40c7c84d97056a0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 18:20:34 +0000 Subject: [PATCH 09/69] ci: This PR is to trigger periodic CI testing From 2d14678fd1e8064c8341e5936875b74baa5730c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 18:20:27 +0000 Subject: [PATCH 10/69] ci: This PR is to trigger periodic CI testing From b6f7c07d632b43f0f53e7371184bdbfffcd27852 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 18:20:45 +0000 Subject: [PATCH 11/69] ci: This PR is to trigger periodic CI testing From fb4a5fa27a9f4cfdf004138e62650980a8cd4237 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 18:20:54 +0000 Subject: [PATCH 12/69] ci: This PR is to trigger periodic CI testing From f6fec21025a60deb163257f19a9a10ba1e211267 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 18:20:58 +0000 Subject: [PATCH 13/69] ci: This PR is to trigger periodic CI testing From b686fbd37e4d243f686b2e8f110d34d534a47dfc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 18:21:40 +0000 Subject: [PATCH 14/69] ci: This PR is to trigger periodic CI testing From 6d765afccc1a0e2aeb68143e87f9890a0f831713 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 18:20:45 +0000 Subject: [PATCH 15/69] ci: This PR is to trigger periodic CI testing From 11cae53d694edec0bf9b2e0c7ee9090fd847036e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 18:21:23 +0000 Subject: [PATCH 16/69] ci: This PR is to trigger periodic CI testing From 912d3ce33bd60c3148b447bfa81f7af465351feb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 18:21:14 +0000 Subject: [PATCH 17/69] ci: This PR is to trigger periodic CI testing From 5a9e6a7ec84085ee28a383a8a790107bc5e5cbef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 18:19:03 +0000 Subject: [PATCH 18/69] ci: This PR is to trigger periodic CI testing From 809ea352067367e61234d8f171f54c932bd2eadb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 18:20:09 +0000 Subject: [PATCH 19/69] ci: This PR is to trigger periodic CI testing From 11bdaaaff8cb167eefd8dc923a40911f765c1b04 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 18:19:53 +0000 Subject: [PATCH 20/69] ci: This PR is to trigger periodic CI testing From a2690927b3e87f95a7c62c87dcc32951cb3e49bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 18:19:42 +0000 Subject: [PATCH 21/69] ci: This PR is to trigger periodic CI testing From 306b417e0eb0f6c02b737ecc7095b36221e3673b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 18:21:12 +0000 Subject: [PATCH 22/69] ci: This PR is to trigger periodic CI testing From c2243f350d9e2a0bfe7bccd43773919f834e6e0a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 18:22:14 +0000 Subject: [PATCH 23/69] ci: This PR is to trigger periodic CI testing From b60649650c41cd92ca5ec1b280cea808802c8154 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 18:19:46 +0000 Subject: [PATCH 24/69] ci: This PR is to trigger periodic CI testing From e92eb43fc71ee588800af12078cdacd66d47420a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 18:22:10 +0000 Subject: [PATCH 25/69] ci: This PR is to trigger periodic CI testing From 2b7f2ce27876af61f61eaf274dab98743f72056d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 18:19:46 +0000 Subject: [PATCH 26/69] ci: This PR is to trigger periodic CI testing From 9ad3d13b24e8c58e84dfa71d4a12b8dcb71ddbdc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 18:21:43 +0000 Subject: [PATCH 27/69] ci: This PR is to trigger periodic CI testing From 55b262457e19b5a92fe8239e7028203345fb01c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 18:20:37 +0000 Subject: [PATCH 28/69] ci: This PR is to trigger periodic CI testing From 0fc9d362c20c2080e1885054c02f4ba4c9b94c67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 18:17:27 +0000 Subject: [PATCH 29/69] ci: This PR is to trigger periodic CI testing From b755a61f78f1a76f0e66bbadf16b1531455dcd48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 18:22:03 +0000 Subject: [PATCH 30/69] ci: This PR is to trigger periodic CI testing From 106ff964cd4cb42bf552eff4945fda871e387edc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 18:20:58 +0000 Subject: [PATCH 31/69] ci: This PR is to trigger periodic CI testing From 5813f0513b6b7bb731a6d64e77b615fd12099ea8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 18:22:17 +0000 Subject: [PATCH 32/69] ci: This PR is to trigger periodic CI testing From f92a53c031eb7b4c6e9c5dda3852634209b7feec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 18:22:29 +0000 Subject: [PATCH 33/69] ci: This PR is to trigger periodic CI testing From aae49855a78f7dbc3ef443b889f4bc7d9a2ed2aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 18:23:07 +0000 Subject: [PATCH 34/69] ci: This PR is to trigger periodic CI testing From d1d68fbb69b5de7f48fe22b5949347d8119a62b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 18:22:45 +0000 Subject: [PATCH 35/69] ci: This PR is to trigger periodic CI testing From da3c5a2b382be1d894d3b9db3df25429a1d76ab0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 18:23:40 +0000 Subject: [PATCH 36/69] ci: This PR is to trigger periodic CI testing From 88117ad6df62760866f7dfe92023fbb8d2f4db85 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 18:23:40 +0000 Subject: [PATCH 37/69] ci: This PR is to trigger periodic CI testing From 7756d952a7669561266ef0d696eca7d55b3aab05 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 18:25:06 +0000 Subject: [PATCH 38/69] ci: This PR is to trigger periodic CI testing From 1f216b4a980c5e58b51d04b82ff7490b4f67d77b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Jun 2024 18:23:53 +0000 Subject: [PATCH 39/69] ci: This PR is to trigger periodic CI testing From 582c5651a8e03f77c2319f988a401be0fb386cb9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 18:23:56 +0000 Subject: [PATCH 40/69] ci: This PR is to trigger periodic CI testing From 4b05d67702312792412ce1012854b1cf07c12487 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jul 2024 18:24:17 +0000 Subject: [PATCH 41/69] ci: This PR is to trigger periodic CI testing From a43802e3a2760efd27908d5c882ddbc4da4e85f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 18:24:20 +0000 Subject: [PATCH 42/69] ci: This PR is to trigger periodic CI testing From bd1b7305dccf53821527fef1cf0220a007ede256 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 18:26:13 +0000 Subject: [PATCH 43/69] ci: This PR is to trigger periodic CI testing From f1397c32f787f0e16fb8a961078efb4918ce0ca8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 18:25:50 +0000 Subject: [PATCH 44/69] ci: This PR is to trigger periodic CI testing From ef352f9cda292aaa215ccdc8028dd290b4476f56 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Aug 2024 18:25:49 +0000 Subject: [PATCH 45/69] 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 97947965f3b0b22d8c62408a086c09c474e5b0e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 18:25:00 +0000 Subject: [PATCH 46/69] ci: This PR is to trigger periodic CI testing From f4a68ea25ea8c5c6edf30eb9056b7930da9c6855 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 18:25:23 +0000 Subject: [PATCH 47/69] ci: This PR is to trigger periodic CI testing From df32effa2528e15b0a1978373064a6a236e27196 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 18:25:11 +0000 Subject: [PATCH 48/69] ci: This PR is to trigger periodic CI testing From 3079a5b9bd4e46528d2e9944fa02f387421485de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 18:25:39 +0000 Subject: [PATCH 49/69] ci: This PR is to trigger periodic CI testing From e715537f42c0990ac7f279562d3c206cbd361699 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 18:26:01 +0000 Subject: [PATCH 50/69] ci: This PR is to trigger periodic CI testing From 959155538f6a9d22c02b426e9bc856e031868d3f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 18:26:49 +0000 Subject: [PATCH 51/69] ci: This PR is to trigger periodic CI testing From 22101ade8e9aad093d87aedebeef91695e7d0cd8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 18:26:57 +0000 Subject: [PATCH 52/69] ci: This PR is to trigger periodic CI testing From 22434f728ed40dbfe71ddfb03bfc31dab5dcd477 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 18:27:16 +0000 Subject: [PATCH 53/69] ci: This PR is to trigger periodic CI testing From fac2f0e46b7c8d21e67ee8cf4d4834c6967d0121 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 18:27:09 +0000 Subject: [PATCH 54/69] ci: This PR is to trigger periodic CI testing From 5da3d01f8f56c062cddd927cded2fc1875605b14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Oct 2024 18:56:30 +0000 Subject: [PATCH 55/69] ci: This PR is to trigger periodic CI testing From f307c3963bf6c17f05fca1bbcfd2447078b9e8e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 18:27:32 +0000 Subject: [PATCH 56/69] ci: This PR is to trigger periodic CI testing From e689c556af90e6059944d104796ad74c30a83fef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 18:27:35 +0000 Subject: [PATCH 57/69] ci: This PR is to trigger periodic CI testing From 598beee1276cf7c669c43cd1b03927b1e76d42aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 18:27:12 +0000 Subject: [PATCH 58/69] ci: This PR is to trigger periodic CI testing From 074cb848710ab7052d1ba4cde0a8f8cab3bc530f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2024 01:13:55 +0000 Subject: [PATCH 59/69] ci: This PR is to trigger periodic CI testing From c4256d213ccf326b50e911df04868a8518506d4b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 18:39:54 +0000 Subject: [PATCH 60/69] ci: This PR is to trigger periodic CI testing From dcda3a4263c5d24ff4a537851cd313b0af77b242 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 18:29:03 +0000 Subject: [PATCH 61/69] ci: This PR is to trigger periodic CI testing From 7c350d126cfeb96094f97934f6de2765d3c9bd84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 18:29:21 +0000 Subject: [PATCH 62/69] ci: This PR is to trigger periodic CI testing From f78edc3ce4a1f6b12a1eb739f1b2bafe138483c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 18:30:08 +0000 Subject: [PATCH 63/69] ci: This PR is to trigger periodic CI testing From 57aee6cec35db18754e891a68d38b51bf2119644 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 18:29:46 +0000 Subject: [PATCH 64/69] ci: This PR is to trigger periodic CI testing From b7d979730c9b8c205308381187e08fe8d8d990db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 18:27:25 +0000 Subject: [PATCH 65/69] ci: This PR is to trigger periodic CI testing From 39dc7516533f49e2806a7b420f0426bf4853e49e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 18:27:34 +0000 Subject: [PATCH 66/69] ci: This PR is to trigger periodic CI testing From d9ba665d5b94f89e126de9a0ff2449a0b9debb96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 18:27:58 +0000 Subject: [PATCH 67/69] ci: This PR is to trigger periodic CI testing From f78509f35a406deee6d79fc3140a3b64e7698dfc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2025 18:27:48 +0000 Subject: [PATCH 68/69] ci: This PR is to trigger periodic CI testing From 0779b3d9edc06e3f4bdc00c180a0e08e233207da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 18:26:17 +0000 Subject: [PATCH 69/69] ci: This PR is to trigger periodic CI testing