From 9caf27188126430f0378269e59020a21f400011a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 15:00:52 +0000 Subject: [PATCH 01/64] 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 40de40bc610dc6121455ed087b5d8bf759a9683d 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:32 +0000 Subject: [PATCH 02/64] 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 bbaca1204c593b2e525f1b99db7154ee8e7818ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 15:00:55 +0000 Subject: [PATCH 03/64] ci: This PR is to trigger periodic CI testing From 3d2d81582fd312c07fb39619e1eedf1ed3347894 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 15:00:43 +0000 Subject: [PATCH 04/64] ci: This PR is to trigger periodic CI testing From 1e215103e138bf3ce0ac73b0961efe4a70babcae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 15:00:58 +0000 Subject: [PATCH 05/64] ci: This PR is to trigger periodic CI testing From a186532b933a5d5e95dc99d5c2182d28320f5f59 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 15:00:43 +0000 Subject: [PATCH 06/64] ci: This PR is to trigger periodic CI testing From 1c50804b3e7727152295ef69a69abf6762280806 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 15:00:51 +0000 Subject: [PATCH 07/64] 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 8411d434b78b3a2a043afa0781c6ceff08f37d31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 15:00:39 +0000 Subject: [PATCH 08/64] ci: This PR is to trigger periodic CI testing From 5aff7f4bdde001bad66623cab962b80817f9d37e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 15:00:36 +0000 Subject: [PATCH 09/64] ci: This PR is to trigger periodic CI testing From c6529ac220d2ee999e92b27248b51160749a566a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 15:00:44 +0000 Subject: [PATCH 10/64] ci: This PR is to trigger periodic CI testing From 559dec2cfbd3c9ca0346fe75ad1c44fde7f8bbb8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 15:00:42 +0000 Subject: [PATCH 11/64] ci: This PR is to trigger periodic CI testing From ad8830d8b40dfc4ffacf57239d3596ebfc0e9b96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 15:00:48 +0000 Subject: [PATCH 12/64] ci: This PR is to trigger periodic CI testing From 390bf9159fc378524014d4dfb8fca1accd08d877 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 15:00:34 +0000 Subject: [PATCH 13/64] ci: This PR is to trigger periodic CI testing From 9a8e9b797d764cc64e7f0dfd662fe00a2bca94cb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 15:00:39 +0000 Subject: [PATCH 14/64] ci: This PR is to trigger periodic CI testing From fda93b709949bdda1164cff6467c95c3c4d5bc2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 15:00:51 +0000 Subject: [PATCH 15/64] ci: This PR is to trigger periodic CI testing From 3d45f97aa898a1db6abd69a0ee855b427bf0b973 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 15:00:42 +0000 Subject: [PATCH 16/64] ci: This PR is to trigger periodic CI testing From 8d273a039a8c98bf222617fea57684745bbe1cfc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 15:00:36 +0000 Subject: [PATCH 17/64] ci: This PR is to trigger periodic CI testing From 293d725561b8ef198c8aa92acc8447ae29490caa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 15:00:33 +0000 Subject: [PATCH 18/64] ci: This PR is to trigger periodic CI testing From 527ed92082ec562b1bf559961c110f585a03b244 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 15:00:39 +0000 Subject: [PATCH 19/64] ci: This PR is to trigger periodic CI testing From f7662b1c8061f4cec9e8c7564464ad2b1cc1b7e9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 15:00:42 +0000 Subject: [PATCH 20/64] ci: This PR is to trigger periodic CI testing From 44028aedd58f7fdc569dbde6a93ea260aac9ac1d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 15:00:38 +0000 Subject: [PATCH 21/64] ci: This PR is to trigger periodic CI testing From f07f2436daeced1ef61a54468e0023347686c5a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 15:00:45 +0000 Subject: [PATCH 22/64] ci: This PR is to trigger periodic CI testing From 187228171e159e8299d7d92e9c542e1c302baf0b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 15:00:54 +0000 Subject: [PATCH 23/64] ci: This PR is to trigger periodic CI testing From 0457df7ce7fe942767b2b712d8c05926829d4419 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 15:00:39 +0000 Subject: [PATCH 24/64] ci: This PR is to trigger periodic CI testing From d4b2d7fe7b27209f86a65a59399c2b09a16fc772 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 15:00:38 +0000 Subject: [PATCH 25/64] ci: This PR is to trigger periodic CI testing From 8c5bab06b1e73cf26ce3969813a20f3a8057ecd0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 15:00:52 +0000 Subject: [PATCH 26/64] ci: This PR is to trigger periodic CI testing From fcec51e86ccba422cf85b1febfbe431b79c0ce55 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 15:00:56 +0000 Subject: [PATCH 27/64] ci: This PR is to trigger periodic CI testing From 8dff9a09824863e5ebf77ce34d59e22ca8fc8e8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 15:00:37 +0000 Subject: [PATCH 28/64] ci: This PR is to trigger periodic CI testing From 9024fb8743e031569c7b57e3e1612bdb5aaf7446 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 15:00:43 +0000 Subject: [PATCH 29/64] ci: This PR is to trigger periodic CI testing From 327de235dce7f6f6c3238a0552b49853c9350f5d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 15:00:41 +0000 Subject: [PATCH 30/64] ci: This PR is to trigger periodic CI testing From 3f3f02f518c48ff46baae6ee05c3510145f125b1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 15:00:47 +0000 Subject: [PATCH 31/64] ci: This PR is to trigger periodic CI testing From c4764898789e1129dad114ad31d6e616a8460360 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 15:00:46 +0000 Subject: [PATCH 32/64] ci: This PR is to trigger periodic CI testing From 47a9a349bb770a7cf3ae964fc0dc0cd81c9ba976 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 15:00:47 +0000 Subject: [PATCH 33/64] ci: This PR is to trigger periodic CI testing From 8d4cb365cc19f447881b839386c666076d8f4978 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 15:00:41 +0000 Subject: [PATCH 34/64] ci: This PR is to trigger periodic CI testing From 411ea213b90df39c62cb9159197b38706e956ec7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 15:00:34 +0000 Subject: [PATCH 35/64] ci: This PR is to trigger periodic CI testing From c357f8cd547e389fe3fa35215b3450c451b16bd9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 15:00:45 +0000 Subject: [PATCH 36/64] ci: This PR is to trigger periodic CI testing From a3fea2fa1642b84716460854ca75cb05d33f1a13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 15:00:52 +0000 Subject: [PATCH 37/64] ci: This PR is to trigger periodic CI testing From aafaffd94058a66cb44bb532ee58abf47bf2a8bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 15:00:52 +0000 Subject: [PATCH 38/64] ci: This PR is to trigger periodic CI testing From 2553078e73b0df721cd46719215ecfb8862fa4ee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Jun 2024 15:00:57 +0000 Subject: [PATCH 39/64] ci: This PR is to trigger periodic CI testing From 579cb791488080621540106ac14e2e2517a3eae6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 15:00:56 +0000 Subject: [PATCH 40/64] ci: This PR is to trigger periodic CI testing From f88087718debd66d8243b5b0cd6335b653b380f3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jul 2024 15:01:05 +0000 Subject: [PATCH 41/64] ci: This PR is to trigger periodic CI testing From d6211f58563f2beb1428031278d54921c441d456 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 15:00:54 +0000 Subject: [PATCH 42/64] ci: This PR is to trigger periodic CI testing From f27604be66415684369ade276b6d18b4863534d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 15:01:05 +0000 Subject: [PATCH 43/64] ci: This PR is to trigger periodic CI testing From 535e2a75d6066ef5bd0f4a808d87411d0f7ddbff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 15:00:48 +0000 Subject: [PATCH 44/64] ci: This PR is to trigger periodic CI testing From 44d33d02ec30249645d2ddd80b13ace1712dd8d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Aug 2024 15:00:38 +0000 Subject: [PATCH 45/64] 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 b1b8c27b5fc608aafc510cbc3dd103080e9aeefd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 15:00:51 +0000 Subject: [PATCH 46/64] ci: This PR is to trigger periodic CI testing From de8d415942609a2a18f5e29f9638344f4f9ad8c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 15:01:30 +0000 Subject: [PATCH 47/64] ci: This PR is to trigger periodic CI testing From 0718cdc7254c7c5e33eafc2bba9ae60b6258441a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 15:00:37 +0000 Subject: [PATCH 48/64] ci: This PR is to trigger periodic CI testing From a456f00e3dc2bdb69c234ae9a99f577d0bb9e01f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 15:00:43 +0000 Subject: [PATCH 49/64] ci: This PR is to trigger periodic CI testing From 17cc27bbf014c7f0f8fa90f6197dd05bb4478ff2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 15:00:39 +0000 Subject: [PATCH 50/64] ci: This PR is to trigger periodic CI testing From 9237c3148a93b29621383baefc47bf5fec550235 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 15:01:12 +0000 Subject: [PATCH 51/64] ci: This PR is to trigger periodic CI testing From 290497cb92fa6d515f842d18e97b51b8cab90627 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 15:00:34 +0000 Subject: [PATCH 52/64] ci: This PR is to trigger periodic CI testing From aa3539e7b5190ebe6f2089789c15d4ec5d228836 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 15:25:57 +0000 Subject: [PATCH 53/64] ci: This PR is to trigger periodic CI testing From 9efe2a5227768fdc6b5418889703247447ae5744 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 15:00:34 +0000 Subject: [PATCH 54/64] ci: This PR is to trigger periodic CI testing From 5e270816eca550bb6c57c1a58e30925db1bba960 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/64] ci: This PR is to trigger periodic CI testing From 2e8ea4d0c6842bb177cc3b95bb8d5f3bb7f218bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:00:35 +0000 Subject: [PATCH 56/64] ci: This PR is to trigger periodic CI testing From f40d0c0aa224197130df381bd5a76f49dd873a48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 15:01:33 +0000 Subject: [PATCH 57/64] ci: This PR is to trigger periodic CI testing From 11c68955cfd621de860944e9897448080166ba0a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 15:00:39 +0000 Subject: [PATCH 58/64] ci: This PR is to trigger periodic CI testing From 54af0f76e5780ef08dba09ce4f9571517c93b59b 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:12:54 +0000 Subject: [PATCH 59/64] ci: This PR is to trigger periodic CI testing From cc50fc8019f10f8609f8eaf5a93661af73887fd4 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:24 +0000 Subject: [PATCH 60/64] ci: This PR is to trigger periodic CI testing From 11e3622bc4b69e4198c6e36b05f202640f03b9a0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 15:00:42 +0000 Subject: [PATCH 61/64] ci: This PR is to trigger periodic CI testing From 6abc5eea2d059017a9dac7297a2ccaf2e27ddc6b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 15:01:34 +0000 Subject: [PATCH 62/64] ci: This PR is to trigger periodic CI testing From ecaac3a3fd48025a0a7b2b03ec3e54eb8285539a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 15:02:51 +0000 Subject: [PATCH 63/64] ci: This PR is to trigger periodic CI testing From 6c6439343e869b1648e41f4630240a7dad009e2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 15:00:42 +0000 Subject: [PATCH 64/64] ci: This PR is to trigger periodic CI testing