From d213a367f229a2d2d89fc0b1b6a7be70117e3038 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:28:32 +0000 Subject: [PATCH 01/67] 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 8fbf41455a29926114882918f1d7a49a4ad4028c 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:27 +0000 Subject: [PATCH 02/67] 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 336c3064271f74456dafee40912e11f3baf14873 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:28:38 +0000 Subject: [PATCH 03/67] ci: This PR is to trigger periodic CI testing From 1d39a170a9eb2c0aa857694c4905f596b6ca0229 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:28:31 +0000 Subject: [PATCH 04/67] ci: This PR is to trigger periodic CI testing From fcbffedf5d57743e0c678d2f9341ec353d77fb50 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:27:54 +0000 Subject: [PATCH 05/67] ci: This PR is to trigger periodic CI testing From 9e849b80aac0dea82afac5b08bd3418b441cffda 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:28:13 +0000 Subject: [PATCH 06/67] ci: This PR is to trigger periodic CI testing From cd4e77c2f7a5994edf7cca535cf5b2681b2c45bf 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:28:28 +0000 Subject: [PATCH 07/67] 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 aa6466896193c20b48c7190dfea724404e14b433 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:28:49 +0000 Subject: [PATCH 08/67] ci: This PR is to trigger periodic CI testing From f4fb384ead0b01931678b95f003177b5af40fafe 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:28:52 +0000 Subject: [PATCH 09/67] ci: This PR is to trigger periodic CI testing From 2716edc27f82a7ccf7ff42e76c0df8bf30c0691d 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:28:26 +0000 Subject: [PATCH 10/67] ci: This PR is to trigger periodic CI testing From 8bdb56cb41ef22e9600a891f7f36adeb2e624dcf 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:29:00 +0000 Subject: [PATCH 11/67] ci: This PR is to trigger periodic CI testing From a14f364a5ac1ee586edeb2375013b460909934d1 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:28:57 +0000 Subject: [PATCH 12/67] ci: This PR is to trigger periodic CI testing From db183fc1585ec6235dfe3f3999d01e4bfe39dc7c 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:27:57 +0000 Subject: [PATCH 13/67] ci: This PR is to trigger periodic CI testing From 48efdd4188ebcb3b0c5adba28a487f642ee67a4d 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:28:40 +0000 Subject: [PATCH 14/67] ci: This PR is to trigger periodic CI testing From b3a45b8fceb6b57599626fa78576f16460192088 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:29:20 +0000 Subject: [PATCH 15/67] ci: This PR is to trigger periodic CI testing From 516cf463845a62d25b0a0d72eb56af641e91421f 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:29:49 +0000 Subject: [PATCH 16/67] ci: This PR is to trigger periodic CI testing From b76ca47927e5442d034bdc3bb716b1812d688109 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:29:19 +0000 Subject: [PATCH 17/67] ci: This PR is to trigger periodic CI testing From 677f58008c19d4f5e289e21aeb27d977fd7d5a1a 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:25:56 +0000 Subject: [PATCH 18/67] ci: This PR is to trigger periodic CI testing From 260e5016e361c8005771e9bff738cce22386a5bc 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:27:08 +0000 Subject: [PATCH 19/67] ci: This PR is to trigger periodic CI testing From 71e6c18775dd4133d81f7567a3e7676e2b70e362 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:27:10 +0000 Subject: [PATCH 20/67] ci: This PR is to trigger periodic CI testing From f20ec0ede34288c02149ddd60252e85d31886e4a 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:26:33 +0000 Subject: [PATCH 21/67] ci: This PR is to trigger periodic CI testing From f3456d0574d68d62b10bd7e02ed54773aeee554e 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:26:22 +0000 Subject: [PATCH 22/67] ci: This PR is to trigger periodic CI testing From 8fe9b16fe0c214d6a983a5eaef998e75b78eaee7 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:27:00 +0000 Subject: [PATCH 23/67] ci: This PR is to trigger periodic CI testing From 7bcaff7b9b38c1150e876acc6a856bf76a1a2e0c 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:26:16 +0000 Subject: [PATCH 24/67] ci: This PR is to trigger periodic CI testing From dfe04cb653306d23c6fb6294bd42c34c9be312f3 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:29:18 +0000 Subject: [PATCH 25/67] ci: This PR is to trigger periodic CI testing From 4b202f7f3430e536c2670a44e9097df578d152df 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:29:49 +0000 Subject: [PATCH 26/67] ci: This PR is to trigger periodic CI testing From 4845e1ed85250bb44f967202e3ada3ce848280c3 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:26:50 +0000 Subject: [PATCH 27/67] ci: This PR is to trigger periodic CI testing From 2a723b048b873e4e7ad93017cf8697b885a77843 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:27:51 +0000 Subject: [PATCH 28/67] ci: This PR is to trigger periodic CI testing From d12946e37be4e4d8bb98700e2c3a3249d64000de 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:26:21 +0000 Subject: [PATCH 29/67] ci: This PR is to trigger periodic CI testing From 8f3f22d497583a5e7a85115c175c0f4e1b6bf45a 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:28:10 +0000 Subject: [PATCH 30/67] ci: This PR is to trigger periodic CI testing From 0ab1933873bf5ac64e6dfda380a18554ce0228b8 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:27:57 +0000 Subject: [PATCH 31/67] ci: This PR is to trigger periodic CI testing From 8977b828be9886b47dcde11813d6374761d54331 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:28:29 +0000 Subject: [PATCH 32/67] ci: This PR is to trigger periodic CI testing From 07e68d151df0c58fac78f720b85a40335ddd01dd 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:29:24 +0000 Subject: [PATCH 33/67] ci: This PR is to trigger periodic CI testing From fb5f06a88fd8fed4fb2d52add2a3391af19ad435 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:30:11 +0000 Subject: [PATCH 34/67] ci: This PR is to trigger periodic CI testing From d40e193e2824b8d72283e80b118a772a8431c1bc 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:30:58 +0000 Subject: [PATCH 35/67] ci: This PR is to trigger periodic CI testing From f9859a7659ead5bb2814a133507ede5f3cf2f17d 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:31:11 +0000 Subject: [PATCH 36/67] ci: This PR is to trigger periodic CI testing From 63128bc764d75828b51b80d7c4432f4631b9c5b6 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:30:49 +0000 Subject: [PATCH 37/67] ci: This PR is to trigger periodic CI testing From 20d93c826c0efbd396896153ca4c8f701ccee686 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:32:08 +0000 Subject: [PATCH 38/67] ci: This PR is to trigger periodic CI testing From ae58afd562205add9842ab6a315881b47eb88e1e 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:31:34 +0000 Subject: [PATCH 39/67] ci: This PR is to trigger periodic CI testing From 1cf36a3f05db808f0c4abb243ca2deb62f45bd71 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:32:43 +0000 Subject: [PATCH 40/67] ci: This PR is to trigger periodic CI testing From abef3bcf42275a8ae4bce0a363d3ce20411344ef 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:31:50 +0000 Subject: [PATCH 41/67] ci: This PR is to trigger periodic CI testing From 0df3a1ef6eb3e3f820d22f8a43b5b8e2e0df9e6c 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:31:52 +0000 Subject: [PATCH 42/67] ci: This PR is to trigger periodic CI testing From bcb06443db09c520dcc5e296e036e9715eaf5111 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:32:27 +0000 Subject: [PATCH 43/67] ci: This PR is to trigger periodic CI testing From a996a1c875fd99e6a33fed1dd69b8bbe9150c5a9 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:34:38 +0000 Subject: [PATCH 44/67] ci: This PR is to trigger periodic CI testing From a13d0517af8516c57cb2d73a6d911424239f60dd 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:35:47 +0000 Subject: [PATCH 45/67] 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 77f72beac275b16df67bae74ab73aa31b3f88e6c 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:37:56 +0000 Subject: [PATCH 46/67] ci: This PR is to trigger periodic CI testing From 015b95f15c63cda150ecbb4e5199beaa827ee615 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:32:32 +0000 Subject: [PATCH 47/67] ci: This PR is to trigger periodic CI testing From 2419115bd667dc160aec8ca670900c4dff5de4dd 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:34:28 +0000 Subject: [PATCH 48/67] ci: This PR is to trigger periodic CI testing From 15b2d00b89a4381b8ddd0139282fa3484eacb31a 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:39:10 +0000 Subject: [PATCH 49/67] ci: This PR is to trigger periodic CI testing From 173e7fad7ce6164764f745bf13e7d115111d2b50 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:34:35 +0000 Subject: [PATCH 50/67] ci: This PR is to trigger periodic CI testing From 232bf90894f8f26b9b37052347f3b7cc7acbc4dc 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:35:49 +0000 Subject: [PATCH 51/67] ci: This PR is to trigger periodic CI testing From 562127f7101c32c43fb0cc4917220c427c1e6132 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:40:03 +0000 Subject: [PATCH 52/67] ci: This PR is to trigger periodic CI testing From 0c0ec12ea52b629f538c1f6b8768351ff0f10dc7 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:59 +0000 Subject: [PATCH 53/67] ci: This PR is to trigger periodic CI testing From 71524dc8737630d3af4123352f1fb7ec59666e54 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:51:06 +0000 Subject: [PATCH 54/67] ci: This PR is to trigger periodic CI testing From 1be9f550d2856166f20e50356dc223a313b2f658 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:20 +0000 Subject: [PATCH 55/67] ci: This PR is to trigger periodic CI testing From 66a1d9b2fbf227e0d6cfc9d6e744e9a62e4980a3 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:37:21 +0000 Subject: [PATCH 56/67] ci: This PR is to trigger periodic CI testing From c8cb644dace8459a6e47362cafff77e8de1ec7e5 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:42:32 +0000 Subject: [PATCH 57/67] ci: This PR is to trigger periodic CI testing From 114482d45557917fe5626b5cd053a6d723e879ff 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:41:46 +0000 Subject: [PATCH 58/67] ci: This PR is to trigger periodic CI testing From 509cab6ee0465a9c1489ee164a95ff5133888e08 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:27 +0000 Subject: [PATCH 59/67] ci: This PR is to trigger periodic CI testing From 4618211fb73c301de66c1c6d25ca618273ff7c79 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:12 +0000 Subject: [PATCH 60/67] ci: This PR is to trigger periodic CI testing From 89fc07249387cbb5ce39f1e1f906ad9c3b3e6025 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:43:45 +0000 Subject: [PATCH 61/67] ci: This PR is to trigger periodic CI testing From 63229288ef216e80907c110141ad28756e6d6cc1 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:43:57 +0000 Subject: [PATCH 62/67] ci: This PR is to trigger periodic CI testing From 68da7c1ea58b971a86b2085a1318a06663b2e26c 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:44:40 +0000 Subject: [PATCH 63/67] ci: This PR is to trigger periodic CI testing From bbb3e83e5d2c918775d9262c276a7a2f47641a45 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:43:50 +0000 Subject: [PATCH 64/67] ci: This PR is to trigger periodic CI testing From 489d61f69056c7b827476f90e1a07e69c1316988 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:41:35 +0000 Subject: [PATCH 65/67] ci: This PR is to trigger periodic CI testing From 803ac9093693e6fc7bc5e7b34df066878054f6a8 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:43:07 +0000 Subject: [PATCH 66/67] ci: This PR is to trigger periodic CI testing From 991e7545f1d8812d1fdb7d874a5ef5606326909c 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:41:59 +0000 Subject: [PATCH 67/67] ci: This PR is to trigger periodic CI testing