From cef5ab893242a05c291c5609578ffcd2a3a693e9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 17:07:02 +0000 Subject: [PATCH 01/71] 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 f452819e5def7c6d860fae68e2530a4205e4fd6d 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:26 +0000 Subject: [PATCH 02/71] 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 273af4a8e6aa37a664caaac3cf5f5624ffc356f3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 17:07:00 +0000 Subject: [PATCH 03/71] ci: This PR is to trigger periodic CI testing From 463233c52331c3a9c0670156e16f367871d4c602 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 17:07:03 +0000 Subject: [PATCH 04/71] ci: This PR is to trigger periodic CI testing From 11cff2bcdb0cda871e549d03ac6cb1c1096e69c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 17:06:49 +0000 Subject: [PATCH 05/71] ci: This PR is to trigger periodic CI testing From a41ab222c6f700a4ebd28c0bdce86dbb8e92b833 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 17:07:11 +0000 Subject: [PATCH 06/71] ci: This PR is to trigger periodic CI testing From c4ca8cc45570f59a8f40aeee4e0caaab2453b74c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 17:07:10 +0000 Subject: [PATCH 07/71] 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 ad22e9f3cf652c0fd74d5afe9d5cedf8a0cab14b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 17:07:30 +0000 Subject: [PATCH 08/71] ci: This PR is to trigger periodic CI testing From e85e3e606c5cd91f59dc5e4892c17a2968a59244 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 17:07:28 +0000 Subject: [PATCH 09/71] ci: This PR is to trigger periodic CI testing From b266407e79307ec423a238736345775c6be8da13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 17:07:24 +0000 Subject: [PATCH 10/71] ci: This PR is to trigger periodic CI testing From 4c40acd66114e2ef4cd8421947593ba4df61702c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 17:07:20 +0000 Subject: [PATCH 11/71] ci: This PR is to trigger periodic CI testing From 6605f49b33a4b82a513b160aa47ea82d7adb866e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 17:07:12 +0000 Subject: [PATCH 12/71] ci: This PR is to trigger periodic CI testing From a097aac96ebe643c4870f5206d9e4e85a07d436b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 17:07:53 +0000 Subject: [PATCH 13/71] ci: This PR is to trigger periodic CI testing From cb5b46ba3d1eb4ec3e4841f63051d26e12a2196c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 17:07:17 +0000 Subject: [PATCH 14/71] ci: This PR is to trigger periodic CI testing From d21a7b43e5ee32d4a9bab5e5c356cdae963d3838 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 17:07:30 +0000 Subject: [PATCH 15/71] ci: This PR is to trigger periodic CI testing From 1c44ce8c2db8c41f5782a883b260aa26365b7cbc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 17:07:40 +0000 Subject: [PATCH 16/71] ci: This PR is to trigger periodic CI testing From 56c5e4f5f84a8ec8997e5c66c35cfee688397ff0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 17:08:03 +0000 Subject: [PATCH 17/71] ci: This PR is to trigger periodic CI testing From 5556f5224aa5716d1c32cd2caff39b0886e2018f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 17:08:42 +0000 Subject: [PATCH 18/71] ci: This PR is to trigger periodic CI testing From 441c48de1a4c32c849254b1fa68f7fe0f6c957ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 17:08:27 +0000 Subject: [PATCH 19/71] ci: This PR is to trigger periodic CI testing From b415d07989fae6191e57b7b5d0c000de40160a34 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 17:08:57 +0000 Subject: [PATCH 20/71] ci: This PR is to trigger periodic CI testing From c57e9df9449bbbd91b69453fa24e8ed4f1a8ee66 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 17:08:00 +0000 Subject: [PATCH 21/71] ci: This PR is to trigger periodic CI testing From 4e7ddc099d02c6d9eea69713e78c803dd116ce7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 17:08:58 +0000 Subject: [PATCH 22/71] ci: This PR is to trigger periodic CI testing From e447317daf948484abd193b3d1471070d1e374c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 17:07:04 +0000 Subject: [PATCH 23/71] ci: This PR is to trigger periodic CI testing From 20d9383505dff365a39ad40e5c4742298fda9fc0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 17:06:51 +0000 Subject: [PATCH 24/71] ci: This PR is to trigger periodic CI testing From 68cb17814b8f3aec91716dbda4f32b670d8d01ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 17:07:23 +0000 Subject: [PATCH 25/71] ci: This PR is to trigger periodic CI testing From a8d493ba4fad87f28a999d7b329c3bff4bcb1453 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 17:07:58 +0000 Subject: [PATCH 26/71] ci: This PR is to trigger periodic CI testing From 40e6f1f363d94110da8ebe2f85d9c787c4ce2be8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 17:07:16 +0000 Subject: [PATCH 27/71] ci: This PR is to trigger periodic CI testing From e5394a62b7627ec8a6eaa6f44bef0c24d7bac596 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 17:09:14 +0000 Subject: [PATCH 28/71] ci: This PR is to trigger periodic CI testing From 8d1546c03714befa38feb4e426aa8367b04e138a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 17:06:07 +0000 Subject: [PATCH 29/71] ci: This PR is to trigger periodic CI testing From eeed0b030370571a0e611db9116c51a18c83fbf6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 17:07:07 +0000 Subject: [PATCH 30/71] ci: This PR is to trigger periodic CI testing From a5a94ee5c90e8e00661472e00ca161a9524d4aa1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 17:07:17 +0000 Subject: [PATCH 31/71] ci: This PR is to trigger periodic CI testing From 427b706ef33042c415491ffc09f4f3dea826ffef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 17:07:49 +0000 Subject: [PATCH 32/71] ci: This PR is to trigger periodic CI testing From c2360094236063bdd8e5c4e9d9e569a08b4ac1dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 17:09:35 +0000 Subject: [PATCH 33/71] ci: This PR is to trigger periodic CI testing From 47c9d268376072a461a3bc264bce0e0e9df962c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 17:07:42 +0000 Subject: [PATCH 34/71] ci: This PR is to trigger periodic CI testing From 9e2159bb23edce9b468ee1b2e595047790e1e9d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 17:09:40 +0000 Subject: [PATCH 35/71] ci: This PR is to trigger periodic CI testing From 5ccf15ccbe5ca36e75bbc470a70fdfd14618b81b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 17:08:43 +0000 Subject: [PATCH 36/71] ci: This PR is to trigger periodic CI testing From 4efb0c8111494cc27bc51e29fc9aff67ab5481bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 17:09:00 +0000 Subject: [PATCH 37/71] ci: This PR is to trigger periodic CI testing From 358d39beb6152ac66a045f491f4dbab544d0ff1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 17:08:57 +0000 Subject: [PATCH 38/71] ci: This PR is to trigger periodic CI testing From 7862899ac17e60e4604167562d117e6f67203126 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Jun 2024 17:07:53 +0000 Subject: [PATCH 39/71] ci: This PR is to trigger periodic CI testing From 27f18a7552aaf64e9ae74f9e04c901f5f83783b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 17:08:36 +0000 Subject: [PATCH 40/71] ci: This PR is to trigger periodic CI testing From 368f66c78621c610ec98b408ebd0a8a84be4e34e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jul 2024 17:08:04 +0000 Subject: [PATCH 41/71] ci: This PR is to trigger periodic CI testing From 66708eaefc2394d7b2eb3e1f52401fc1438a9086 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 17:08:05 +0000 Subject: [PATCH 42/71] ci: This PR is to trigger periodic CI testing From 786e8379be8ef67c20f977c2b3533be6a461ef28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 17:09:02 +0000 Subject: [PATCH 43/71] ci: This PR is to trigger periodic CI testing From 4d6c298d8dd5668c69223f6d67baba0d8d5203a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 17:09:02 +0000 Subject: [PATCH 44/71] ci: This PR is to trigger periodic CI testing From f1c27428f488d146373939751730eef00d007ead Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Aug 2024 17:09:09 +0000 Subject: [PATCH 45/71] 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 8f4badb46c234cd9c54ed0063c2bc7714a9ae870 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 17:08:13 +0000 Subject: [PATCH 46/71] ci: This PR is to trigger periodic CI testing From 49be00845d19add8a5dfbfe5bbf14765ce5a5405 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 17:08:07 +0000 Subject: [PATCH 47/71] ci: This PR is to trigger periodic CI testing From cb07dec1179117618c284415aa90f00a984d682d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 17:10:18 +0000 Subject: [PATCH 48/71] ci: This PR is to trigger periodic CI testing From 917dc98d170561adf13accc67de1aec2ff667258 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 17:08:41 +0000 Subject: [PATCH 49/71] ci: This PR is to trigger periodic CI testing From e17a94a78a47664577bc3f330a63640341daafe3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 17:09:48 +0000 Subject: [PATCH 50/71] ci: This PR is to trigger periodic CI testing From f9b4618158c9b505981ef8db5d1937c19c3cca2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:09:50 +0000 Subject: [PATCH 51/71] ci: This PR is to trigger periodic CI testing From db6bd4cfbc690cdd0a86849c5752bb7e37e112f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 17:10:14 +0000 Subject: [PATCH 52/71] ci: This PR is to trigger periodic CI testing From b3d9e1ad8a80fe1eedca67a633a109ad97d26662 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 17:08:58 +0000 Subject: [PATCH 53/71] ci: This PR is to trigger periodic CI testing From ec9c409f4a5f099f786803bf86ffa3750ec12eef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 17:10:08 +0000 Subject: [PATCH 54/71] ci: This PR is to trigger periodic CI testing From 8fa1828a3db1654ba267efb57a897956412511bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Oct 2024 17:14:05 +0000 Subject: [PATCH 55/71] ci: This PR is to trigger periodic CI testing From 4b8796fabfe278eafc32825edcac3509ad3eea94 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 17:10:01 +0000 Subject: [PATCH 56/71] ci: This PR is to trigger periodic CI testing From bad3ffa2e0d1d9ef69e39b425be0d6d26a9665d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:10:00 +0000 Subject: [PATCH 57/71] ci: This PR is to trigger periodic CI testing From 66efa65d0ce4d655341899a9afcd240620d2cd04 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 17:09:28 +0000 Subject: [PATCH 58/71] ci: This PR is to trigger periodic CI testing From 2a8732af66d6962946d1da9a74cc5d5a2f64f00f 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:34 +0000 Subject: [PATCH 59/71] ci: This PR is to trigger periodic CI testing From ee8d87670250eca019d6954a94c4655cd742407d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 17:13:15 +0000 Subject: [PATCH 60/71] ci: This PR is to trigger periodic CI testing From ad8532c120fe1fcd8934a72edbb4087ee8ec006b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 17:09:15 +0000 Subject: [PATCH 61/71] ci: This PR is to trigger periodic CI testing From 9835281173ca14c02d70f3c9efe664714473ecd2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 17:09:12 +0000 Subject: [PATCH 62/71] ci: This PR is to trigger periodic CI testing From 797b8ee4a94b2974e4a7f33502a2f8ff0f36b527 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 17:09:39 +0000 Subject: [PATCH 63/71] ci: This PR is to trigger periodic CI testing From b5633aa36d3945f8d7da52a230a353d5f499a7c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 17:09:45 +0000 Subject: [PATCH 64/71] ci: This PR is to trigger periodic CI testing From 961b10bdcc17eb4a6c5505d32711128bacbf4d91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 17:09:46 +0000 Subject: [PATCH 65/71] ci: This PR is to trigger periodic CI testing From 1da28e8a85404f465c2fd09d375cb2de70829aee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 17:08:52 +0000 Subject: [PATCH 66/71] ci: This PR is to trigger periodic CI testing From 0402594703b1eb2ce63fe9dc6fdbf6b58f2416ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 17:09:06 +0000 Subject: [PATCH 67/71] ci: This PR is to trigger periodic CI testing From 39cbdd68ca075eeb043b40b3135fd414a1b7162b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2025 17:09:35 +0000 Subject: [PATCH 68/71] ci: This PR is to trigger periodic CI testing From 5bc379ce1486d0983044423e3c4982a3538bdc6d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 17:08:31 +0000 Subject: [PATCH 69/71] ci: This PR is to trigger periodic CI testing From feb725f69e8c25c164c122b2472367047e095b55 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Jan 2025 17:08:45 +0000 Subject: [PATCH 70/71] ci: This PR is to trigger periodic CI testing From 89fa211ce823ae7a2604b587c7a1eec1d66d5597 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Feb 2025 23:18:03 +0000 Subject: [PATCH 71/71] ci: This PR is to trigger periodic CI testing