From f15450db1ef2dffa8a9ef695d660ab967e438383 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:22:16 +0000 Subject: [PATCH 01/68] 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 ab2d6cb4254023d8df23019fb3f93c903cc53dde 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:33 +0000 Subject: [PATCH 02/68] 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 f828b417c4cee1548c72938f15fb1197dab2e17c 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:22:16 +0000 Subject: [PATCH 03/68] ci: This PR is to trigger periodic CI testing From 6c3c0b984496058430fba41fc78475cabfecd6bb 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:22:14 +0000 Subject: [PATCH 04/68] ci: This PR is to trigger periodic CI testing From 8eca38db4da1caabf3ef1cc1d71223855ad0f931 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:21:42 +0000 Subject: [PATCH 05/68] ci: This PR is to trigger periodic CI testing From b214a60c936678f99066c76da74e4964925b9bb7 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:21:50 +0000 Subject: [PATCH 06/68] ci: This PR is to trigger periodic CI testing From c800648a80f36434fc8b714a095f7f1f951701e7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 17:03:05 +0000 Subject: [PATCH 07/68] 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 1068a6e2bbabe6964ccd9d5d8e1608a68d53acd3 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:22:18 +0000 Subject: [PATCH 08/68] ci: This PR is to trigger periodic CI testing From 6b01fa4439dab93c637611d2ddc845ef6ec21fca 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:22:32 +0000 Subject: [PATCH 09/68] ci: This PR is to trigger periodic CI testing From c083060c46195c4f221cfe7f6fa76f0498253673 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:22:43 +0000 Subject: [PATCH 10/68] ci: This PR is to trigger periodic CI testing From 830f1b1cd9cbe0e2d3f407ed158248826d314b90 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:22:16 +0000 Subject: [PATCH 11/68] ci: This PR is to trigger periodic CI testing From 7c9b170ee85bc53837f62f718f747d91e55ac0dc 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:22:53 +0000 Subject: [PATCH 12/68] ci: This PR is to trigger periodic CI testing From 684d2e24f92d5097734c3de1ced2a59ae47e7004 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:22:39 +0000 Subject: [PATCH 13/68] ci: This PR is to trigger periodic CI testing From 34e4ce898439b2319b04afe5148c98e88913bafe 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:21:55 +0000 Subject: [PATCH 14/68] ci: This PR is to trigger periodic CI testing From 5ad9297e79c6c87fbe68bfe0f0582c86a2dafcdd 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:22:35 +0000 Subject: [PATCH 15/68] ci: This PR is to trigger periodic CI testing From dd6d332c5b4b19941de69aa13d0ec3cd6d73d680 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:23:05 +0000 Subject: [PATCH 16/68] ci: This PR is to trigger periodic CI testing From 25e0bacdd99aa61690fffcdfb2f8bdce0e409f51 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:23:09 +0000 Subject: [PATCH 17/68] ci: This PR is to trigger periodic CI testing From 5233f0664c31a6fab74724da588394a4ad7e37bf 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:23:09 +0000 Subject: [PATCH 18/68] ci: This PR is to trigger periodic CI testing From 083da16c0bd4707d92abb7d3213ff484fb2094f0 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:20:09 +0000 Subject: [PATCH 19/68] ci: This PR is to trigger periodic CI testing From 8d19396ccce700702483fbc04bcd2f2a45e3e58e 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:21:59 +0000 Subject: [PATCH 20/68] ci: This PR is to trigger periodic CI testing From 8fb13687b977aae4071d929a214f41bd2b8993a4 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:21:20 +0000 Subject: [PATCH 21/68] ci: This PR is to trigger periodic CI testing From 3bfe31a6942fcda8df0551c8f54018adc795f3ad 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:20:51 +0000 Subject: [PATCH 22/68] ci: This PR is to trigger periodic CI testing From d150999170926870aac5c324232fb0c559ea38eb 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:20:27 +0000 Subject: [PATCH 23/68] ci: This PR is to trigger periodic CI testing From ef6509d279d5983485fa16e11c050a9ad5d53edf 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:20:49 +0000 Subject: [PATCH 24/68] ci: This PR is to trigger periodic CI testing From d043837d41209e1fd7f45b8bb24583ac1b65b553 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:20:13 +0000 Subject: [PATCH 25/68] ci: This PR is to trigger periodic CI testing From 4f23306f5e599ca179f677c0822d65e79521f48c 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:23:43 +0000 Subject: [PATCH 26/68] ci: This PR is to trigger periodic CI testing From 8fca7dc9013cb57b4b0414a910f10bcd814e2a47 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:24:12 +0000 Subject: [PATCH 27/68] ci: This PR is to trigger periodic CI testing From 6c85c6538ba94a52e610dd8b65400a69ce768605 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:20:50 +0000 Subject: [PATCH 28/68] ci: This PR is to trigger periodic CI testing From 22557e50b88fadf28bdda38290f54ec6e51bd80a 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:22:11 +0000 Subject: [PATCH 29/68] ci: This PR is to trigger periodic CI testing From 198b809eceebae26e22703f65bd6c30f713bc4b0 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:19:19 +0000 Subject: [PATCH 30/68] ci: This PR is to trigger periodic CI testing From 97c1b0bf8f3aece6e57493db783d2d639b662cb4 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:22:23 +0000 Subject: [PATCH 31/68] ci: This PR is to trigger periodic CI testing From 6721ec12b8e28dd93953cd2e737af1018ff790a5 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:21:50 +0000 Subject: [PATCH 32/68] ci: This PR is to trigger periodic CI testing From 5c82f17cd48482d03f8cdb8ad4a851b12f939353 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:22:31 +0000 Subject: [PATCH 33/68] ci: This PR is to trigger periodic CI testing From 779fa4e9a66a6282d7d263c14878374426f887ef 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:23:23 +0000 Subject: [PATCH 34/68] ci: This PR is to trigger periodic CI testing From 379e848d35e199c6646c86473c53d7bbca850a3f 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:24:00 +0000 Subject: [PATCH 35/68] ci: This PR is to trigger periodic CI testing From 441e0dee06ae85e8a5bcdbd9bf319f22dd0edde4 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:24:32 +0000 Subject: [PATCH 36/68] ci: This PR is to trigger periodic CI testing From 4f7313d3ecc2b047b7add6c2c991d7f1681645cb 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:24:46 +0000 Subject: [PATCH 37/68] ci: This PR is to trigger periodic CI testing From f6f8c655352322584e556b9a42babb92b1a1b0cf 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:24:20 +0000 Subject: [PATCH 38/68] ci: This PR is to trigger periodic CI testing From ec3f5b69d29b918a54e46cd7c47d0164ae91e6f6 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:25:41 +0000 Subject: [PATCH 39/68] ci: This PR is to trigger periodic CI testing From 9f348431f6a79c74d3736eab0f4470d2532cfaba 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:25:07 +0000 Subject: [PATCH 40/68] ci: This PR is to trigger periodic CI testing From 76563ae89136832eb3bdcb00079259092abcda23 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:26:20 +0000 Subject: [PATCH 41/68] ci: This PR is to trigger periodic CI testing From 4afb9b323b6019042cdcf1a9f1879f1aba2d52db 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:25:05 +0000 Subject: [PATCH 42/68] ci: This PR is to trigger periodic CI testing From 2d910a19b9c8da2cb1d006d0706da731a7003e24 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:25:06 +0000 Subject: [PATCH 43/68] ci: This PR is to trigger periodic CI testing From 2efb0c2a7993de34fa5132ac15b70d5e9ffdacf4 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:25:39 +0000 Subject: [PATCH 44/68] ci: This PR is to trigger periodic CI testing From 914f574ab4567c473d99d9eca3fa891bfe071124 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:27:44 +0000 Subject: [PATCH 45/68] ci: This PR is to trigger periodic CI testing From fc75df915e06a18f88f5d97509af5349c078d19c 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:25:52 +0000 Subject: [PATCH 46/68] 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 b71f6e286e7d5e2e0b760e68c022f1a6e3a520b9 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:27:03 +0000 Subject: [PATCH 47/68] ci: This PR is to trigger periodic CI testing From b8dc294b75ccc922262880b60ddf1a79d3bcd131 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:25:46 +0000 Subject: [PATCH 48/68] ci: This PR is to trigger periodic CI testing From f8ddad528449ad4cd5533ac1d9e122ecf8809bd4 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:27:10 +0000 Subject: [PATCH 49/68] ci: This PR is to trigger periodic CI testing From 55967e3305a31c9dd37c27a0fa52186a7f42390b 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:27:39 +0000 Subject: [PATCH 50/68] ci: This PR is to trigger periodic CI testing From e611b6e3a0eb6ceaf04a0e28a83a75dd4dadcc3f 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:27:27 +0000 Subject: [PATCH 51/68] ci: This PR is to trigger periodic CI testing From d37f477f74b9e87f6bbeeeb12ec00977b4de3ead 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:28:13 +0000 Subject: [PATCH 52/68] ci: This PR is to trigger periodic CI testing From 1b1a6d24d76ed4be52fdd4068f62c591fdf125da 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:28:13 +0000 Subject: [PATCH 53/68] ci: This PR is to trigger periodic CI testing From 61d819c219c3d702f24fe56fac38c2804d649f3d 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:38:28 +0000 Subject: [PATCH 54/68] ci: This PR is to trigger periodic CI testing From e2eddb75b0eb304d2dc7fd85a91e52898132927b 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:29:43 +0000 Subject: [PATCH 55/68] ci: This PR is to trigger periodic CI testing From 9b0da36357564d40462f4cad196f83cfb498eef0 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:43:45 +0000 Subject: [PATCH 56/68] ci: This PR is to trigger periodic CI testing From 786d0cb751405cbf4bec0455f2f91f389fd2a841 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:29:58 +0000 Subject: [PATCH 57/68] ci: This PR is to trigger periodic CI testing From 8aa4f1529b9e2190cbc5dc2b61aae8ad214c66e0 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:29:46 +0000 Subject: [PATCH 58/68] ci: This PR is to trigger periodic CI testing From 9a53b8d07574075a15f5635362a6cf3aeebcab18 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:29:58 +0000 Subject: [PATCH 59/68] ci: This PR is to trigger periodic CI testing From e2858438b13ab72ff248a1ec835c1f1cc99e2a47 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:02 +0000 Subject: [PATCH 60/68] ci: This PR is to trigger periodic CI testing From 66a390f6125c94468958ff87e9a50b6143fcaf2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 12:32:55 +0000 Subject: [PATCH 61/68] ci: This PR is to trigger periodic CI testing From 872d57de85cd95aeaa57448a12d4ff05f3bdc7f0 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:30:32 +0000 Subject: [PATCH 62/68] ci: This PR is to trigger periodic CI testing From 43ff5ec020594e22dfbf776e89579cff857ad077 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:31:19 +0000 Subject: [PATCH 63/68] ci: This PR is to trigger periodic CI testing From 3a21e383543ff82b9a0602a97746f0851789a0e6 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:32:02 +0000 Subject: [PATCH 64/68] ci: This PR is to trigger periodic CI testing From a10e26e6c102c68f309c2fbc98c353190b386bef 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:31:58 +0000 Subject: [PATCH 65/68] ci: This PR is to trigger periodic CI testing From 4d17e9b9eda2aeb042ccdbedd78179f9aa578507 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:29:19 +0000 Subject: [PATCH 66/68] ci: This PR is to trigger periodic CI testing From 0069f30ebb359c2921b7003cab8b444e99da5292 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:29:35 +0000 Subject: [PATCH 67/68] ci: This PR is to trigger periodic CI testing From 07840648ca070767ada1eefb53352005fd90df0e 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:30:00 +0000 Subject: [PATCH 68/68] ci: This PR is to trigger periodic CI testing