From d74fffd820924ff770d9aef9eefa46d9dc67ce17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 21:06:53 +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 896f20bd1b70a1f1ca3e089af03f6df31f3a2cf8 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:25 +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 f6c187ca28c9a3783527d4edd31dea0505e5ca82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 21:07:09 +0000 Subject: [PATCH 03/71] ci: This PR is to trigger periodic CI testing From 085a3cc0a5d3b1b2e69f97482ff28a55ab8e3d94 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 21:07:13 +0000 Subject: [PATCH 04/71] ci: This PR is to trigger periodic CI testing From 3cfb87295d4d726c23beb639f4803f36204c9783 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 21:07:12 +0000 Subject: [PATCH 05/71] ci: This PR is to trigger periodic CI testing From 59e73702844f24153c76a64a604cfe0f80762845 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 21:07:12 +0000 Subject: [PATCH 06/71] ci: This PR is to trigger periodic CI testing From 8145a9bdf78a62c6bc96437e8946a4f442e4bc71 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 21:07:18 +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 df8f3eb31364c3f5a727743003697e0e3373a0cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 21:07:21 +0000 Subject: [PATCH 08/71] ci: This PR is to trigger periodic CI testing From fd733599782dff2ac73e82db3c44aee2df0920f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 21:07:18 +0000 Subject: [PATCH 09/71] ci: This PR is to trigger periodic CI testing From d6bde2ec42e91183078e2e7a3f599336c2731319 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 21:07:23 +0000 Subject: [PATCH 10/71] ci: This PR is to trigger periodic CI testing From 61975933a86aa1d6fb71054f57667ce436c4cc6d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 21:07:25 +0000 Subject: [PATCH 11/71] ci: This PR is to trigger periodic CI testing From bdcfbe82639646094d2125c1b7bebc5bc2ffa25f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 21:07:22 +0000 Subject: [PATCH 12/71] ci: This PR is to trigger periodic CI testing From 62797adfa878f27f9d74e64155625b56ae3f241b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 21:07:32 +0000 Subject: [PATCH 13/71] ci: This PR is to trigger periodic CI testing From ab8563f7c9d0332ec3d1086be24f64dc144fa5de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 21:07:38 +0000 Subject: [PATCH 14/71] ci: This PR is to trigger periodic CI testing From 8848b1af772cb2eb01becff564e49238fcd86135 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 21:07:47 +0000 Subject: [PATCH 15/71] ci: This PR is to trigger periodic CI testing From 6ea57d304336ba642b595f5c0f42540d07dffb8c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 21:07:49 +0000 Subject: [PATCH 16/71] ci: This PR is to trigger periodic CI testing From 027fc11aa8ad4f14941b6574f36e90d2ad3afdcb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 21:07:39 +0000 Subject: [PATCH 17/71] ci: This PR is to trigger periodic CI testing From e8a608e9c238d14732b53e6319d1218d31945cc9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 21:07:17 +0000 Subject: [PATCH 18/71] ci: This PR is to trigger periodic CI testing From bec26afebc0d13d3b2546aa42319b5c036de4291 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 21:07:23 +0000 Subject: [PATCH 19/71] ci: This PR is to trigger periodic CI testing From 73916af81c597a2b34a0571a9ba2804905873369 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 21:08:35 +0000 Subject: [PATCH 20/71] ci: This PR is to trigger periodic CI testing From bf8c160f480d6742b6c0a1cc9a222f01956db5d4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 21:07:16 +0000 Subject: [PATCH 21/71] ci: This PR is to trigger periodic CI testing From 8d53369c53b691158385ebaa7a1031271ef792e9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 21:07:13 +0000 Subject: [PATCH 22/71] ci: This PR is to trigger periodic CI testing From afe40ce14bf2ed46901f7d136fc09b3566913a77 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 21:07:28 +0000 Subject: [PATCH 23/71] ci: This PR is to trigger periodic CI testing From 1a04058cc3c3e72da0363b5b98470335bc544291 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 21:09:14 +0000 Subject: [PATCH 24/71] ci: This PR is to trigger periodic CI testing From a555819854459ea97c515d674577cd33139dfc68 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 21:07:13 +0000 Subject: [PATCH 25/71] ci: This PR is to trigger periodic CI testing From d5638faf283a3bb450ad24662702e005e45eeb9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 21:07:30 +0000 Subject: [PATCH 26/71] ci: This PR is to trigger periodic CI testing From 2c89bc72180319bfe1964cee4fc4e00e04087cf3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 21:07:27 +0000 Subject: [PATCH 27/71] ci: This PR is to trigger periodic CI testing From ec9dcd8fd083a622c13d92cf1f9dc1b2a7889844 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 21:08:41 +0000 Subject: [PATCH 28/71] ci: This PR is to trigger periodic CI testing From 1df95e027ac9c6fe5ae739b3b0be353781d3d3a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 21:07:08 +0000 Subject: [PATCH 29/71] ci: This PR is to trigger periodic CI testing From f5a24a097d70f4ed64ab1b3fc3f49c4295834a35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 21:08:09 +0000 Subject: [PATCH 30/71] ci: This PR is to trigger periodic CI testing From 1c214a6d7c37f160ad04bca1a1784369709b6717 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 21:07:44 +0000 Subject: [PATCH 31/71] ci: This PR is to trigger periodic CI testing From 88a9665518f6034670c12b3baf6d0b2ba8599d2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 21:09:13 +0000 Subject: [PATCH 32/71] ci: This PR is to trigger periodic CI testing From c86be2123348fe7cedefe4697df6792bad9c0b06 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 21:09:08 +0000 Subject: [PATCH 33/71] ci: This PR is to trigger periodic CI testing From 67f14ea80870836e0be8a255700efdeb126823ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 21:08:02 +0000 Subject: [PATCH 34/71] ci: This PR is to trigger periodic CI testing From 3daebc0dc6cb92e4db46e35427efb3afca2c696a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 21:08:23 +0000 Subject: [PATCH 35/71] ci: This PR is to trigger periodic CI testing From 73c315a3245e72040a36e71fc5a3bad522a6a2f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 21:09:47 +0000 Subject: [PATCH 36/71] ci: This PR is to trigger periodic CI testing From 783305aa5c92fdd75050f852f3fc112da0794086 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 21:08:21 +0000 Subject: [PATCH 37/71] ci: This PR is to trigger periodic CI testing From be56a32d2f91932da5d8d29f7b13d20505b7e9a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 21:08:49 +0000 Subject: [PATCH 38/71] ci: This PR is to trigger periodic CI testing From 27d6424f9bcffaf06b9e193ae8282eaf78858f4b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Jun 2024 21:09:31 +0000 Subject: [PATCH 39/71] ci: This PR is to trigger periodic CI testing From 86b889113439ef02fb73f9fba46c89e3671be571 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 21:09:36 +0000 Subject: [PATCH 40/71] ci: This PR is to trigger periodic CI testing From 4d7eddc0eb8fdf7076a481ca60b6e844d64f15c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jul 2024 21:10:30 +0000 Subject: [PATCH 41/71] ci: This PR is to trigger periodic CI testing From d30467212ab982e5e2b4baa21d4fd2724b1f2a76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 21:09:46 +0000 Subject: [PATCH 42/71] ci: This PR is to trigger periodic CI testing From a68b0c11302ef32eb22d4c564b7e0d6d9fe57d28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 21:09:09 +0000 Subject: [PATCH 43/71] ci: This PR is to trigger periodic CI testing From b125e2ed1ed6c52a11dae7c901df3e69c658a7ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 21:08:54 +0000 Subject: [PATCH 44/71] ci: This PR is to trigger periodic CI testing From 6b07df7b2ec440cdea2b2de5ea6b929368346677 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Aug 2024 21:09:46 +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 c0e6e4e07c523d169dffe3dca1d0d579855d6442 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 21:10:27 +0000 Subject: [PATCH 46/71] ci: This PR is to trigger periodic CI testing From 6eb7de19e24797c60ae10a0dc1983fb80b580970 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 21:08:55 +0000 Subject: [PATCH 47/71] ci: This PR is to trigger periodic CI testing From 4ea37025fe23dee3e1f0eab7ef9163a5e9be4833 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 21:09:18 +0000 Subject: [PATCH 48/71] ci: This PR is to trigger periodic CI testing From 7dd32dbfcadcb47e42d3691a0d0fe1309bbc6924 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 21:09:21 +0000 Subject: [PATCH 49/71] ci: This PR is to trigger periodic CI testing From ceb7e2bcd0ef7cdd6b9d84e364576f2c911ec5a0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 21:11:49 +0000 Subject: [PATCH 50/71] ci: This PR is to trigger periodic CI testing From 3b9a7af0fe1aa667c8b4ee011ef0e758b1271f93 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 21:09:33 +0000 Subject: [PATCH 51/71] ci: This PR is to trigger periodic CI testing From 19f9a7ec5811138aa6fcc95720cc2088bd2e70b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 21:09:37 +0000 Subject: [PATCH 52/71] ci: This PR is to trigger periodic CI testing From 825f58495b84e2cab311aaf9233e3c54f58461e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 21:10:22 +0000 Subject: [PATCH 53/71] ci: This PR is to trigger periodic CI testing From ae2d51e09f1511f209feec7ae2a227f8f97700ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 21:10:00 +0000 Subject: [PATCH 54/71] ci: This PR is to trigger periodic CI testing From 57df8380a555a9c4166f7c4ae9f68de32c25a7f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Oct 2024 23:19:39 +0000 Subject: [PATCH 55/71] ci: This PR is to trigger periodic CI testing From 7a68d5e471fb91e152eaefdf10f088a0dd71629f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 21:10:50 +0000 Subject: [PATCH 56/71] ci: This PR is to trigger periodic CI testing From a59d3756061868e9e0aa8959547b66a589ad1ca6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 21:10:06 +0000 Subject: [PATCH 57/71] ci: This PR is to trigger periodic CI testing From fa5815b2a904dc6b4906604b8c921d371eaef6ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 21:10:23 +0000 Subject: [PATCH 58/71] ci: This PR is to trigger periodic CI testing From 3eed536de077523ad2c40307c9005a993928260c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2024 02:12:44 +0000 Subject: [PATCH 59/71] ci: This PR is to trigger periodic CI testing From 4129fdcc0ce82b5a4a410a5e81987bfadf52a32e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 21:33:13 +0000 Subject: [PATCH 60/71] ci: This PR is to trigger periodic CI testing From 6938c88a68f296750569a02e4d80cd56264f58d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 21:10:18 +0000 Subject: [PATCH 61/71] ci: This PR is to trigger periodic CI testing From 32f246cf6e8597818740bbe7ff0397b53c34b305 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 21:10:28 +0000 Subject: [PATCH 62/71] ci: This PR is to trigger periodic CI testing From b4726529822bd60804eef60d371ec1e1cf028877 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 21:10:37 +0000 Subject: [PATCH 63/71] ci: This PR is to trigger periodic CI testing From a17e2d7dd81309bd6ae5a1b1999011aab760dada Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:10:29 +0000 Subject: [PATCH 64/71] ci: This PR is to trigger periodic CI testing From 0b31d65f61a4243db0346af559678720d4529709 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 21:09:47 +0000 Subject: [PATCH 65/71] ci: This PR is to trigger periodic CI testing From 9f63b19803ff1952029a45c131b373f56e4f34e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 21:09:40 +0000 Subject: [PATCH 66/71] ci: This PR is to trigger periodic CI testing From c1c50d815b80b5a08779f9f86c6ffb053e077a60 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 21:10:31 +0000 Subject: [PATCH 67/71] ci: This PR is to trigger periodic CI testing From b712cdba7c1ce542586ee13421126779a4de246e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2025 21:09:52 +0000 Subject: [PATCH 68/71] ci: This PR is to trigger periodic CI testing From 57070afa921f117bc87637e8483fe6db240859e2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 21:10:19 +0000 Subject: [PATCH 69/71] ci: This PR is to trigger periodic CI testing From b0daec44afabe98f33a83037b00b7286278dd9c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Jan 2025 21:09:37 +0000 Subject: [PATCH 70/71] ci: This PR is to trigger periodic CI testing From 49384bf6ab034864e518588d51c94ff0b1cb37ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 2 Feb 2025 00:27:45 +0000 Subject: [PATCH 71/71] ci: This PR is to trigger periodic CI testing