From 86895a05a5ff4b89ac303eb2f2a05a43b3631015 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 19:10:08 +0000 Subject: [PATCH 01/72] 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 07316f85cc17fae2dd15825df5d33f0ba11d7231 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/72] 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 ef65f71e163067dd263efefa1cf960203a04667a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 19:10:02 +0000 Subject: [PATCH 03/72] ci: This PR is to trigger periodic CI testing From a26ada65ce5ab206cc4bed78713554e66edfb21d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 19:10:18 +0000 Subject: [PATCH 04/72] ci: This PR is to trigger periodic CI testing From c4e0aad1d77fef358402dffcb48d6d9f047f5e3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 19:10:08 +0000 Subject: [PATCH 05/72] ci: This PR is to trigger periodic CI testing From 54db5d0a33acc4ca7af89f9b8e46a5ad808eaf0c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 19:10:14 +0000 Subject: [PATCH 06/72] ci: This PR is to trigger periodic CI testing From 11febd14bd9b04b1816b9db833777dba0c87ad31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 19:10:16 +0000 Subject: [PATCH 07/72] 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 70227162841772bf47555f7c5d51e93258cd9e0b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 19:10:35 +0000 Subject: [PATCH 08/72] ci: This PR is to trigger periodic CI testing From 4381dfa35514b9b2c6831698eefcc43e75939082 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 19:10:39 +0000 Subject: [PATCH 09/72] ci: This PR is to trigger periodic CI testing From 259836d749a1da2e151cb6d443a121357f4ed95f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 19:11:22 +0000 Subject: [PATCH 10/72] ci: This PR is to trigger periodic CI testing From d87a33f9c130bcc22693cc14ad59081f60db10d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 19:10:40 +0000 Subject: [PATCH 11/72] ci: This PR is to trigger periodic CI testing From b89dcbbf3c76b10f79d8ef5de154e92809c6c2ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 19:10:46 +0000 Subject: [PATCH 12/72] ci: This PR is to trigger periodic CI testing From 6d1f080a339e687ef9c07b78deaaddd93ddcfa61 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 19:10:41 +0000 Subject: [PATCH 13/72] ci: This PR is to trigger periodic CI testing From 9a77a5b6018cf23b55b39dd8340c459e4bd01cd2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 19:10:36 +0000 Subject: [PATCH 14/72] ci: This PR is to trigger periodic CI testing From d35db98dceb15951acc39ee92f837538c9e96f31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 19:10:51 +0000 Subject: [PATCH 15/72] ci: This PR is to trigger periodic CI testing From 7b8ef00722ad991684a9ec54b1d8ef9ea747c5be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 19:11:20 +0000 Subject: [PATCH 16/72] ci: This PR is to trigger periodic CI testing From 160bfaf58e0a32e6b52b28a5036b67a6b0902087 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 19:11:39 +0000 Subject: [PATCH 17/72] ci: This PR is to trigger periodic CI testing From 3c0f922debb657f841746a7400b2ae2bdffde58d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 19:11:10 +0000 Subject: [PATCH 18/72] ci: This PR is to trigger periodic CI testing From 37a52408f152437c5c2abb31c1c8e50d64b674d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 19:10:32 +0000 Subject: [PATCH 19/72] ci: This PR is to trigger periodic CI testing From 38e1f1e49661e5e96777eabac883da4eeed96599 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 19:10:22 +0000 Subject: [PATCH 20/72] ci: This PR is to trigger periodic CI testing From 5862f5b50690274c3b95aef72e2b73406123567e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 19:11:18 +0000 Subject: [PATCH 21/72] ci: This PR is to trigger periodic CI testing From c13ea0c6fa0372171efdf0b920a3891f8ecbed4e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 19:10:23 +0000 Subject: [PATCH 22/72] ci: This PR is to trigger periodic CI testing From 1bf578f5eb9d7fdb1d89e64b862f41e3827b1d8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 19:10:12 +0000 Subject: [PATCH 23/72] ci: This PR is to trigger periodic CI testing From 42c416bdfcd82243127d0ea826b0b6493164e224 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 19:10:09 +0000 Subject: [PATCH 24/72] ci: This PR is to trigger periodic CI testing From cafa64698404564e529e997e3fa49441ad9401d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 19:11:03 +0000 Subject: [PATCH 25/72] ci: This PR is to trigger periodic CI testing From 54bfea7858b89b41de0fd85402d89cde64b930d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 19:10:37 +0000 Subject: [PATCH 26/72] ci: This PR is to trigger periodic CI testing From bffea10ddc91ea82e7944556d23c8ccc59e08c2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 19:11:15 +0000 Subject: [PATCH 27/72] ci: This PR is to trigger periodic CI testing From d1a9918722ddc7991fe3fcd091af6e6aa590329c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 19:10:41 +0000 Subject: [PATCH 28/72] ci: This PR is to trigger periodic CI testing From 798767b457fdf7fc713c05c154fee8213e49723b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 19:09:41 +0000 Subject: [PATCH 29/72] ci: This PR is to trigger periodic CI testing From d1838971e1c70ee8a66c3b59f2dcca69b3c68044 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 19:11:27 +0000 Subject: [PATCH 30/72] ci: This PR is to trigger periodic CI testing From 51e580a4aac4dc2e7ffd06ed7ad5e715b71c444d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 19:10:30 +0000 Subject: [PATCH 31/72] ci: This PR is to trigger periodic CI testing From 4b4b342311d71b8180f6801e100f012e2544b783 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 19:12:22 +0000 Subject: [PATCH 32/72] ci: This PR is to trigger periodic CI testing From d7307b88a372843dde1f519a586770aafe6a56cb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 19:11:33 +0000 Subject: [PATCH 33/72] ci: This PR is to trigger periodic CI testing From cdfd027f2cd511b8f36beb2ccaddae8ee2441745 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 19:10:51 +0000 Subject: [PATCH 34/72] ci: This PR is to trigger periodic CI testing From f13fb1ff1379c7bcc82d6ccc13f902c3cb602054 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 19:12:10 +0000 Subject: [PATCH 35/72] ci: This PR is to trigger periodic CI testing From 834d5a2a4d0b603216b73b06a141bee9bebff257 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 19:14:51 +0000 Subject: [PATCH 36/72] ci: This PR is to trigger periodic CI testing From a45b36d735e40aa7ade53ed7843e74be83e85e50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 19:12:19 +0000 Subject: [PATCH 37/72] ci: This PR is to trigger periodic CI testing From 7dc883c4d501845212434eafc014396734bec0d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 19:12:49 +0000 Subject: [PATCH 38/72] ci: This PR is to trigger periodic CI testing From 5f81ccad9bd7d774c9b0621543957e591761fcf6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Jun 2024 19:14:03 +0000 Subject: [PATCH 39/72] ci: This PR is to trigger periodic CI testing From 3178188780d852e938ceef4dece356585079d2c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 19:11:35 +0000 Subject: [PATCH 40/72] ci: This PR is to trigger periodic CI testing From 6cd3376e78d15fb37f75ae9c02f1e2c4a6d1f272 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jul 2024 19:12:03 +0000 Subject: [PATCH 41/72] ci: This PR is to trigger periodic CI testing From 0412bf2d3999cd36b27117944c2a693b98b2f2a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 19:12:22 +0000 Subject: [PATCH 42/72] ci: This PR is to trigger periodic CI testing From ed61e2e1eb2d24b8103925fbe6d357e60fd07f1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 19:11:40 +0000 Subject: [PATCH 43/72] ci: This PR is to trigger periodic CI testing From 87522e7c53f83786a152f4d526ea1bf2a8fc47fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 19:12:35 +0000 Subject: [PATCH 44/72] ci: This PR is to trigger periodic CI testing From d6f04ff8e58eb7c625c533fdf72c908ea16e8145 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Aug 2024 19:12:31 +0000 Subject: [PATCH 45/72] 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 265cd60d1cbb01ee6220fc7a27adb8abc860fa43 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 19:12:47 +0000 Subject: [PATCH 46/72] ci: This PR is to trigger periodic CI testing From 3bb16ef061449aa17c5f5dbc73ce4769e4b76e58 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 19:14:10 +0000 Subject: [PATCH 47/72] ci: This PR is to trigger periodic CI testing From 6d627740b966ba6ba2c799948bf89c243df30cb7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 19:11:58 +0000 Subject: [PATCH 48/72] ci: This PR is to trigger periodic CI testing From b080a865a70689a7b30b89714b67b20dae7e2150 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 19:12:36 +0000 Subject: [PATCH 49/72] ci: This PR is to trigger periodic CI testing From 00ce1d0a3c676dd993a7247b77beffe01cfa0827 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 19:14:12 +0000 Subject: [PATCH 50/72] ci: This PR is to trigger periodic CI testing From 23488550ca4eeb422e101672c05ef18f0a65279f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 19:12:42 +0000 Subject: [PATCH 51/72] ci: This PR is to trigger periodic CI testing From 5f0965462fa5122ff6f827f9a78d88f7392c0223 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 19:13:12 +0000 Subject: [PATCH 52/72] ci: This PR is to trigger periodic CI testing From b6e7ceec8d237b6ff420af5063145ff11b48f066 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 19:13:51 +0000 Subject: [PATCH 53/72] ci: This PR is to trigger periodic CI testing From 02cab509c93a91024ff0c249a51d4cf832156d9c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 19:13:42 +0000 Subject: [PATCH 54/72] ci: This PR is to trigger periodic CI testing From 150fc12b8e23c116d67e88e258514312e633384e 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:18:58 +0000 Subject: [PATCH 55/72] ci: This PR is to trigger periodic CI testing From aac11792a64ede97106d98b5a7c4709d5332dc7b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 19:14:06 +0000 Subject: [PATCH 56/72] ci: This PR is to trigger periodic CI testing From 2c543b97a5acbc6c5d349a21c902ab37f3101824 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 19:12:52 +0000 Subject: [PATCH 57/72] ci: This PR is to trigger periodic CI testing From 144f5ece78131a9183277481810d42c7a796eabe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 19:15:38 +0000 Subject: [PATCH 58/72] ci: This PR is to trigger periodic CI testing From 88df50d17819f89da29eafb648c3572c1a8d2277 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:14:18 +0000 Subject: [PATCH 59/72] ci: This PR is to trigger periodic CI testing From 174e6d6f674f76018548a4f6e2224451a1658ed4 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/72] ci: This PR is to trigger periodic CI testing From 7aff2543cf373b4732363c4d25f389849f25b16d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 19:13:56 +0000 Subject: [PATCH 61/72] ci: This PR is to trigger periodic CI testing From e5d07a9ae951365d420cd22782aa5646f179900f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 19:13:26 +0000 Subject: [PATCH 62/72] ci: This PR is to trigger periodic CI testing From 1eb505940a9f7b7efba72667eb8d48e9fa753ea2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 19:13:36 +0000 Subject: [PATCH 63/72] ci: This PR is to trigger periodic CI testing From 0a23c97909ca0fa272303e44c943f009af9bec08 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 19:13:50 +0000 Subject: [PATCH 64/72] ci: This PR is to trigger periodic CI testing From e292294911ac66a92c16bd2343a1f4dbd0ff56bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 19:12:30 +0000 Subject: [PATCH 65/72] ci: This PR is to trigger periodic CI testing From 7cacdae6df5b9b932e7e1b8c5e8f641730335973 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 19:12:41 +0000 Subject: [PATCH 66/72] ci: This PR is to trigger periodic CI testing From 452380ba1b611e0e3d0862d98cd6536795e0eacf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 19:13:39 +0000 Subject: [PATCH 67/72] ci: This PR is to trigger periodic CI testing From b10f45c6637c7f0ad45755b861fcb52ff14264b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2025 19:12:44 +0000 Subject: [PATCH 68/72] ci: This PR is to trigger periodic CI testing From 526ee7f1e975328f03d3b7f1da19a93255f0b8aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 19:12:34 +0000 Subject: [PATCH 69/72] ci: This PR is to trigger periodic CI testing From 4385a733f1cedc7378a7df7d27265872214ef197 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Jan 2025 19:12:08 +0000 Subject: [PATCH 70/72] ci: This PR is to trigger periodic CI testing From 5f70b030c9a9e343066a61dac17b8267f01b9a86 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:38 +0000 Subject: [PATCH 71/72] ci: This PR is to trigger periodic CI testing From b56d303b3fe0ab29769cbbbd5ff0bfa452044ae9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Feb 2025 19:13:53 +0000 Subject: [PATCH 72/72] ci: This PR is to trigger periodic CI testing