From 5d115425be67f28b4d8de580abb4dd48babfa074 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/73] 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 66d476d4fa50be38bc9d9ded6177d88ade322d09 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/73] 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 e193500c491d03f1e5c278583c0a2cefe8b123c4 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/73] ci: This PR is to trigger periodic CI testing From 8e085b051befb021f74f3d29ea29d05b8a948dc1 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/73] ci: This PR is to trigger periodic CI testing From d717eeddc42133247951e77f797d2938c6b8ce51 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/73] ci: This PR is to trigger periodic CI testing From e4acb7f6736b1907daf80be270a7ae6adc38bf9e 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/73] ci: This PR is to trigger periodic CI testing From d28cf9de9224326035753e71205e738bdc5bf9cc 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/73] 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 4acf3bb0c07f4837a1454082b9f34ef42ca83abc 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/73] ci: This PR is to trigger periodic CI testing From e78a25efc1b9ff6b5e661c29a5469fbcad06a940 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/73] ci: This PR is to trigger periodic CI testing From d5e8d228f7f073d045a3af98961cc9ab64f834dc 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/73] ci: This PR is to trigger periodic CI testing From 95c5f8bd89c3b48e6202c16a0054dfb7a006dcf5 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/73] ci: This PR is to trigger periodic CI testing From b33218225862d7f552bf0aced849b5774d06459b 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/73] ci: This PR is to trigger periodic CI testing From 4baad56cc9131e578323acdeb6aca0a510312ce8 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/73] ci: This PR is to trigger periodic CI testing From 2d7a5337022dd0ec623a52326b5c5813072722b1 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/73] ci: This PR is to trigger periodic CI testing From 03e1e2fa5ee9a5d5088ffc691611cbe1d45f18f4 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/73] ci: This PR is to trigger periodic CI testing From bd3a22d1e6dcc175fd6b2dc72232a664a8cd63a7 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/73] ci: This PR is to trigger periodic CI testing From 5c0e7f3d86edea4ae32662096dfdea2847e287b8 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/73] ci: This PR is to trigger periodic CI testing From f665c76a5d2c351779f265dcb88a904b12e2d81b 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/73] ci: This PR is to trigger periodic CI testing From 3adf30c64c8f25998193ace9ac87446b95e694a1 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/73] ci: This PR is to trigger periodic CI testing From 3c33706860a27424eedb8727b5a3bf8cb45f0816 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/73] ci: This PR is to trigger periodic CI testing From 1cce6833fb814c9f736913012399837ba16e6a82 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/73] ci: This PR is to trigger periodic CI testing From 900ad6e11725e031de971cc33af8014a03db56f0 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/73] ci: This PR is to trigger periodic CI testing From 113db51083de1d5b771eac435e8bf5399b1f5ee1 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/73] ci: This PR is to trigger periodic CI testing From 2ac26315ea25e932e5ce36b12fd63a3d93704940 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/73] ci: This PR is to trigger periodic CI testing From 675cb480ffc399534f3a4662ea9df62b7a6499d5 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/73] ci: This PR is to trigger periodic CI testing From 53dce0f486bafa8419c66c4f945ac08b4faf135c 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/73] ci: This PR is to trigger periodic CI testing From d13b04abb6feba346d64e9c880d2fb80aae44af2 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/73] ci: This PR is to trigger periodic CI testing From d7a811b5acde7a6c0ac30996161612ae6ea6a55b 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/73] ci: This PR is to trigger periodic CI testing From 6b6786dca9a998d741d983c3dba8687aa99e6264 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/73] ci: This PR is to trigger periodic CI testing From 50192d68b5ed39b593200698b6a67dab7a58d4cb 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/73] ci: This PR is to trigger periodic CI testing From 39fb18b98d261866b5dd81f41e6eefdcfe145045 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/73] ci: This PR is to trigger periodic CI testing From 138045eb3c094b15bb520a52f379150a9d80f6a9 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/73] ci: This PR is to trigger periodic CI testing From 9442a62b21a2e71d8cdd5b0239dd68dc54cca160 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/73] ci: This PR is to trigger periodic CI testing From 1cf7b66ea89ba5162a58ec9de1f5500a0cf18a18 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/73] ci: This PR is to trigger periodic CI testing From b52058379688510fa50f29c9e6bdcd4967dd40f6 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/73] ci: This PR is to trigger periodic CI testing From fce42ba90720dc1a190e0123308b6a0a036b42c2 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/73] ci: This PR is to trigger periodic CI testing From 815a2cb31cc7a504ee5381602082406779002b5c 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/73] ci: This PR is to trigger periodic CI testing From d7d59d5e133fc562a1646a7985a490392ca3adc5 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/73] ci: This PR is to trigger periodic CI testing From d60dae5d906c444dde5e0443cc16e0759b85944e 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/73] ci: This PR is to trigger periodic CI testing From ea6402c90b1323c078a2c820595dd8e197d12ee6 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/73] ci: This PR is to trigger periodic CI testing From 25a745d95befb69bf4b5c95c43bd1ceac8e2804e 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/73] ci: This PR is to trigger periodic CI testing From ffb66c553714cacd0689cae9c0a6538fc3b96364 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/73] ci: This PR is to trigger periodic CI testing From 36078779dc11c1dbfbe31d83d5083ecc9e475934 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/73] ci: This PR is to trigger periodic CI testing From 09bff7a05d5e5b8d6cc69af00ca4927c7f34f7cc 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/73] ci: This PR is to trigger periodic CI testing From fafbde480b4ee2add191e4d1c8548db8db82f87d 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/73] 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 58cc321d1ba5a3e6ba6f2e56a7a5befaf19194af 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/73] ci: This PR is to trigger periodic CI testing From eaea40a5e9614b95e0379558321971f2adf6d838 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/73] ci: This PR is to trigger periodic CI testing From 737421d6d39716aeb387c9be8f86f880eb87fb4e 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/73] ci: This PR is to trigger periodic CI testing From a4883bb76d1b3a59caf05e0687c63736f530b358 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/73] ci: This PR is to trigger periodic CI testing From 3fd7e6b9391a050ba08874f76a301a7a0d84952c 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/73] ci: This PR is to trigger periodic CI testing From 543ab3a5b992c584fe830f5f168fc5ce87d893d3 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/73] ci: This PR is to trigger periodic CI testing From c94870c169c0a94e645e79459114c4bc17b65a3b 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/73] ci: This PR is to trigger periodic CI testing From fecdd8c314e0a925e678ed59d41e44bf904e6c9b 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/73] ci: This PR is to trigger periodic CI testing From 7657de2f5d08e3b6e0ac5865a260e18f71165789 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/73] ci: This PR is to trigger periodic CI testing From c66dbec3aa873431d87c441ac8a3135b785209e5 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/73] ci: This PR is to trigger periodic CI testing From 722958b41365b29fa8aa11e2ec5123cb06cc90c4 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/73] ci: This PR is to trigger periodic CI testing From 756d91d21d937f25fbaff737063b0ceb726be24e 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/73] ci: This PR is to trigger periodic CI testing From 30026b79d3a9ac78b0b3024a82605d9672226e12 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/73] ci: This PR is to trigger periodic CI testing From 64f47bd63dac75c3b18697c29e278406a276658a 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/73] ci: This PR is to trigger periodic CI testing From 3518a3d33df603ef6b2cc9372ee5473ff8fd33df 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/73] ci: This PR is to trigger periodic CI testing From 4f34af5c3683784223eefdb1ab43c1c7bf1b213a 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/73] ci: This PR is to trigger periodic CI testing From f3480727b9297326ddf8e51e5b1ec7330f1cabea 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/73] ci: This PR is to trigger periodic CI testing From 2858bd18abb7f053cd44673aa8dc56fa0ee8d6e6 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/73] ci: This PR is to trigger periodic CI testing From b47d9acccc3f05b629e361604cbf316243c10a0d 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/73] ci: This PR is to trigger periodic CI testing From 1ef719783874e2e2fbe029b5979e7927ab9fda17 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/73] ci: This PR is to trigger periodic CI testing From 42023d954614d323f152d6ec10e408f5b80d58e6 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/73] ci: This PR is to trigger periodic CI testing From 56b6c332291c3fc33e5a6e34f639bb7458b064a9 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/73] ci: This PR is to trigger periodic CI testing From bbe14b5d2298f2964ece3fd78dcee78fd51619df 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/73] ci: This PR is to trigger periodic CI testing From 922948738fb689ef5dc5726210d0671da620d218 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/73] ci: This PR is to trigger periodic CI testing From 506b408a9b2afa3529ba8e525d9f682f538ca386 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/73] ci: This PR is to trigger periodic CI testing From e5aef67d083f39fbd0031061fbdd7adec2f23ae8 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/73] ci: This PR is to trigger periodic CI testing From 928eb52b1482d5919d47f69dd37311e8a01ff484 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/73] ci: This PR is to trigger periodic CI testing From 08a120db177aa7dec5e2fbaaa97cd36d7ecaad35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Feb 2025 19:14:32 +0000 Subject: [PATCH 73/73] ci: This PR is to trigger periodic CI testing