From 7dc9e1c293ee076f9c2fd18bec82d9c4081bbad8 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 001/141] 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 00000000..3ec9cf1d --- /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 8631343f3dfe6ee56d711abb0239c02dc6071707 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 002/141] 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 3ec9cf1d..15aa6dbd 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 51d91deb0dd64541e24e35aaecc5bd50f567bb71 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 003/141] ci: This PR is to trigger periodic CI testing From b53cd47e31fe76bffe02387a33b1c90ea4f8dfd4 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 004/141] ci: This PR is to trigger periodic CI testing From 861a062ff0c3e624ba7fe32211fbb51a308e6fe1 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 005/141] ci: This PR is to trigger periodic CI testing From ab64ae7d685f333f46747317bacaae80f363ef36 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 006/141] ci: This PR is to trigger periodic CI testing From 5d0f7cf7948e2658bf41be731cb21183e182a9c6 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 007/141] 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 15aa6dbd..89a343d0 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 5cfbd6c2b55cda00b9101c546cd5e862f0540d40 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 008/141] ci: This PR is to trigger periodic CI testing From 5db1c948ffbc954d0541db16d1d4e7903d4872c6 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 009/141] ci: This PR is to trigger periodic CI testing From b2e415c7c63793bad1bd006c6ac7c78ad23b92c5 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 010/141] ci: This PR is to trigger periodic CI testing From 0f31e96d230339720e3adc4f5e79a323d02bf49a 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 011/141] ci: This PR is to trigger periodic CI testing From d28687a5e81651cc4298ed8ed09b55332974897c 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 012/141] ci: This PR is to trigger periodic CI testing From 443854d80272dd38c69840093ccdcb01cd6930f2 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 013/141] ci: This PR is to trigger periodic CI testing From ee77c0c409ae9628d6a7181560a9b7c3b189bb59 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 014/141] ci: This PR is to trigger periodic CI testing From 6aa66bacbe41ed7019413fa60635a131add33585 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 015/141] ci: This PR is to trigger periodic CI testing From fb04b5e9a7874960174978aecc24ab5b8397ee9e 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 016/141] ci: This PR is to trigger periodic CI testing From 4733eeec82ff041b95db03d686f2cbaa65990abc 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 017/141] ci: This PR is to trigger periodic CI testing From 1beeb21635f56611a45ff24423dafe5632ddb2b7 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 018/141] ci: This PR is to trigger periodic CI testing From d933e6900490d68ef4658881b4c1fdf9d5f3351c 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 019/141] ci: This PR is to trigger periodic CI testing From 346cfae5b8aa9ac121b9127e040f1eef5e832950 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 020/141] ci: This PR is to trigger periodic CI testing From 179cfca26e6525ddc533aa2df033c6a894b80bdf 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 021/141] ci: This PR is to trigger periodic CI testing From 5fd4d739474adfa50f9a33d2296b2b00b1c37496 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 022/141] ci: This PR is to trigger periodic CI testing From 862ded509ce2554ba788da8c8d4da81810cc8607 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 023/141] ci: This PR is to trigger periodic CI testing From 7987fb696c5ded8415dc6832896e31ca8a6bf9b6 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 024/141] ci: This PR is to trigger periodic CI testing From 34ee21685c1a31e1537f6162d4eb82c6b5883876 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 025/141] ci: This PR is to trigger periodic CI testing From dcfd53700829867f79dc3fa230b85d607a9ae8d7 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 026/141] ci: This PR is to trigger periodic CI testing From da636d5da0a195a401d944bcb1d656ae9b560b17 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 027/141] ci: This PR is to trigger periodic CI testing From b30fb29339f1edea1a4e034527d1e7ab42901b0d 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 028/141] ci: This PR is to trigger periodic CI testing From 0eb7c18326a3dc68525d5d7233a28052388ec868 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 029/141] ci: This PR is to trigger periodic CI testing From eb472155b3a8ab31d12f64e3ee356547cd9d66d4 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 030/141] ci: This PR is to trigger periodic CI testing From 493a964f625fc0a3664caaf98e6fe4320f33dd41 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 031/141] ci: This PR is to trigger periodic CI testing From 510458f142c5484c998f070385b0e122c12a618b 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 032/141] ci: This PR is to trigger periodic CI testing From 6abd3d581be211d547d2315a3ec88d6653a8d906 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 033/141] ci: This PR is to trigger periodic CI testing From 1ac1e4113a16ae0a4f638dfa9f50f792e79e88e3 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 034/141] ci: This PR is to trigger periodic CI testing From 0d1590b7c6764eb6a5eb42a580c12a8e14fbce90 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 035/141] ci: This PR is to trigger periodic CI testing From a84c424f233ed017f78a0ee0a6f692ea55e86286 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 036/141] ci: This PR is to trigger periodic CI testing From 69b738fd1c395613e6e6479e501551aa9d0d4c73 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 037/141] ci: This PR is to trigger periodic CI testing From 980c7192103b5982ded4a1547230a80ea6b8835f 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 038/141] ci: This PR is to trigger periodic CI testing From eca5f6ba3b3ce0d601d80148e73bef7b794bcdb2 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 039/141] ci: This PR is to trigger periodic CI testing From 4dff1cc4f3930b7d0adbf7c012f8e83cbd4bfe9c 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 040/141] ci: This PR is to trigger periodic CI testing From cf83c0414cb69b159bbc149d663e8c3132434632 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 041/141] ci: This PR is to trigger periodic CI testing From 965f473685f16afcef38aa2512c371e86ae352b1 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 042/141] ci: This PR is to trigger periodic CI testing From a97cc82458637ca9f573e63bb976c2f6421e09a4 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 043/141] ci: This PR is to trigger periodic CI testing From e4bda01e4e197def17c1baab2e0c2c69f08a1e24 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 044/141] ci: This PR is to trigger periodic CI testing From a67f6faa9ee40671b0c6bd8eda85479714baa9af 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 045/141] 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 89a343d0..433fe54d 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 19ba67b853c82cc0931a724ce862d12f77b5956a 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 046/141] ci: This PR is to trigger periodic CI testing From 32200d5c372d14715fac3ab0964f9d9df10a83c6 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 047/141] ci: This PR is to trigger periodic CI testing From ddab4c93db33dd7528c98dfeaa95fa242d15eca2 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 048/141] ci: This PR is to trigger periodic CI testing From 91c8d344a668d357e81944fa90a2d92e6b7145e3 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 049/141] ci: This PR is to trigger periodic CI testing From 5029505b700dda6122188d2153ec51b4281259c7 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 050/141] ci: This PR is to trigger periodic CI testing From 3af34b3bdf4c2e93e514c51fe194e4551fc9f052 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 051/141] ci: This PR is to trigger periodic CI testing From ab95fcd171d68667aaecf51018fcf015aa0835e9 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 052/141] ci: This PR is to trigger periodic CI testing From aa2517fb5e125a756210b33da7db32f151a74acf 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 053/141] ci: This PR is to trigger periodic CI testing From 3c0722741a0739f1f9143d991ca73eb09449edaf 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 054/141] ci: This PR is to trigger periodic CI testing From 7a8ebbca10ec57f0b59f5dfdd7e9d9588aa52d0c 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 055/141] ci: This PR is to trigger periodic CI testing From 54a0bc740dd2930e92a3a0f78940d3f2e518c7d9 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 056/141] ci: This PR is to trigger periodic CI testing From 625bff3dcd1d0627b17d48494c445ef0ea295edf 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 057/141] ci: This PR is to trigger periodic CI testing From ef5d74b3d5d13799304792b0d812508c0996d3d4 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 058/141] ci: This PR is to trigger periodic CI testing From c543c6a1c0c0f579b77d1b7271eec43278da1dd6 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 059/141] ci: This PR is to trigger periodic CI testing From b970be7195925981611acfc4606765d4652f001f 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 060/141] ci: This PR is to trigger periodic CI testing From a7b0ad5a8df80b9398aac208aad42f8e702c7988 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 061/141] ci: This PR is to trigger periodic CI testing From 00c97aaa4f39c53b9e1dcc0700b4e92fa876e082 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 062/141] ci: This PR is to trigger periodic CI testing From 6b4110802c555bbe1f18613acdc0c6daed20672a 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 063/141] ci: This PR is to trigger periodic CI testing From 2f313ace29cd344a10f10e757c4f5498eee83da0 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 064/141] ci: This PR is to trigger periodic CI testing From a9c4827b7d78cd69e529355bfa597ddc8c53bf24 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 065/141] ci: This PR is to trigger periodic CI testing From 76d47b085d92a92641bb8316963f3412f4306cab 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 066/141] ci: This PR is to trigger periodic CI testing From 8d42846fe8c3ff3dddf50c2b103559de7ef0f3c6 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 067/141] ci: This PR is to trigger periodic CI testing From 3562ef51cd8f79631053a3cb65af64ac4f0c7851 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 068/141] ci: This PR is to trigger periodic CI testing From 37c0ab3d1fb694668599d2d6cc25893402087e8e 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 069/141] ci: This PR is to trigger periodic CI testing From 82ddc4fdb18816e203b101c7f74414d28df15737 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 070/141] ci: This PR is to trigger periodic CI testing From a5b78c81fbb2b962c69baf8af50e409f5b95d070 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 071/141] ci: This PR is to trigger periodic CI testing From d9fb6575f792da40d265c7aaa10ca2a0e8c0229f 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 072/141] ci: This PR is to trigger periodic CI testing From 47162c8865ae147171210306541ff2a01683c3d7 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 073/141] ci: This PR is to trigger periodic CI testing From 7d8539e818f2cdc51e47bdb9c229d0f5793416f3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Feb 2025 19:13:18 +0000 Subject: [PATCH 074/141] ci: This PR is to trigger periodic CI testing From d89ba04d99502ce02fe0ae3c11e0cb5e89aac172 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Mar 2025 19:13:06 +0000 Subject: [PATCH 075/141] ci: This PR is to trigger periodic CI testing From 73173d8a7c684b2cebb42adf31bc568b54154c58 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Mar 2025 19:12:30 +0000 Subject: [PATCH 076/141] ci: This PR is to trigger periodic CI testing From 7cd40c699d1661c3820f04831c8ff6310990fa7b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Mar 2025 19:13:20 +0000 Subject: [PATCH 077/141] ci: This PR is to trigger periodic CI testing From d68b9786f04142aaa4a8a78c2de02f46dd78d72a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Mar 2025 19:13:52 +0000 Subject: [PATCH 078/141] ci: This PR is to trigger periodic CI testing From 70aff3e62f78aaa379c4961c09bee30257a28012 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Mar 2025 19:15:07 +0000 Subject: [PATCH 079/141] ci: This PR is to trigger periodic CI testing From 2cfa89e6877724c5f9b897cbba64914c97dc7ced Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Apr 2025 19:13:39 +0000 Subject: [PATCH 080/141] ci: This PR is to trigger periodic CI testing From 79cfd3ab46d691ba961c17d3c025836bde1ec13e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Apr 2025 19:14:52 +0000 Subject: [PATCH 081/141] ci: This PR is to trigger periodic CI testing From 0079315a90b720f2b948d9e0710097a7aa6194a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Apr 2025 19:15:18 +0000 Subject: [PATCH 082/141] ci: This PR is to trigger periodic CI testing From 242e75913e7509725ed158c4316c6c709c88c304 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Apr 2025 19:15:00 +0000 Subject: [PATCH 083/141] ci: This PR is to trigger periodic CI testing From 90ee8aac6d2313601cc9bd30cb1a74c1e329588b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 May 2025 19:14:29 +0000 Subject: [PATCH 084/141] ci: This PR is to trigger periodic CI testing From aab04c6fbe38ae66df737fa2110899efabed1f8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 May 2025 19:14:25 +0000 Subject: [PATCH 085/141] ci: This PR is to trigger periodic CI testing From 21c3016c0591f5cab3cadcd7fe628d7e1c385f14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 May 2025 19:15:51 +0000 Subject: [PATCH 086/141] ci: This PR is to trigger periodic CI testing --- tests/callback_plugins/dump_packages.py | 64 ------------------------- 1 file changed, 64 deletions(-) diff --git a/tests/callback_plugins/dump_packages.py b/tests/callback_plugins/dump_packages.py index 433fe54d..e69de29b 100644 --- a/tests/callback_plugins/dump_packages.py +++ b/tests/callback_plugins/dump_packages.py @@ -1,64 +0,0 @@ -# -*- 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"] in ["package", "dnf", "yum"] - and fields["args"].get("state") != "absent" - ): - 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) - # tell python black that this line is ok - # fmt: off - self._display.display("lsrpackages: " + " ".join(sorted(list(packages)))) - # fmt: on From a065edb1a92b679590798832812119d76ff0ae87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 May 2025 19:14:33 +0000 Subject: [PATCH 087/141] ci: This PR is to trigger periodic CI testing --- tests/callback_plugins/dump_packages.py | 64 +++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/tests/callback_plugins/dump_packages.py b/tests/callback_plugins/dump_packages.py index e69de29b..433fe54d 100644 --- a/tests/callback_plugins/dump_packages.py +++ b/tests/callback_plugins/dump_packages.py @@ -0,0 +1,64 @@ +# -*- 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"] in ["package", "dnf", "yum"] + and fields["args"].get("state") != "absent" + ): + 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) + # tell python black that this line is ok + # fmt: off + self._display.display("lsrpackages: " + " ".join(sorted(list(packages)))) + # fmt: on From 169343aaa7eba0ede226ea259856c3a203177a94 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 May 2025 19:14:45 +0000 Subject: [PATCH 088/141] ci: This PR is to trigger periodic CI testing From a05a564b10a0343fb7ba5d91a310690b9372b87c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Jun 2025 19:15:11 +0000 Subject: [PATCH 089/141] ci: This PR is to trigger periodic CI testing From 020e332b6875561f5ec080c16d4108c0217aac7b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Jun 2025 19:15:09 +0000 Subject: [PATCH 090/141] ci: This PR is to trigger periodic CI testing From 9649cee5048972b4f20a8d43301d8f1ba39aa6bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Jun 2025 19:15:51 +0000 Subject: [PATCH 091/141] ci: This PR is to trigger periodic CI testing From 3bd94750800226c5c56c37dfc0e52875ac320784 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Jun 2025 19:15:34 +0000 Subject: [PATCH 092/141] ci: This PR is to trigger periodic CI testing From 95991a57d97186735f4b1d786e4940df698b20bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Jul 2025 20:19:28 +0000 Subject: [PATCH 093/141] ci: This PR is to trigger periodic CI testing From f3486ccc1691ef86c8c9484bf2d2feccb431e7cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Jul 2025 19:16:05 +0000 Subject: [PATCH 094/141] ci: This PR is to trigger periodic CI testing From 445ab714086a2ebc188ad41ced43aeab2d4b2a54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Jul 2025 19:16:06 +0000 Subject: [PATCH 095/141] ci: This PR is to trigger periodic CI testing From 6c238298e634887ad868422b458e45a7d848889e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Jul 2025 19:16:22 +0000 Subject: [PATCH 096/141] ci: This PR is to trigger periodic CI testing From e80fcebf73a59163589e837bbd8efbfb152fb4e8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Aug 2025 19:16:44 +0000 Subject: [PATCH 097/141] ci: This PR is to trigger periodic CI testing From f9027855c37475a8c4e5e11d77229d3833321dee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Aug 2025 19:16:01 +0000 Subject: [PATCH 098/141] ci: This PR is to trigger periodic CI testing From eb13e7ca1a5aa67173d97c7cf9bfbc4599789f4b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Aug 2025 19:15:44 +0000 Subject: [PATCH 099/141] ci: This PR is to trigger periodic CI testing From c87657e48d86e818b676c0882275007a4dc4c2f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Aug 2025 19:14:20 +0000 Subject: [PATCH 100/141] ci: This PR is to trigger periodic CI testing From a1f25a23dbceb48103b4a3f89d2e48d29693ece9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Aug 2025 19:14:01 +0000 Subject: [PATCH 101/141] ci: This PR is to trigger periodic CI testing From 5c799875010de7adf2e319e41bb0fddb265cb43d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Sep 2025 19:13:03 +0000 Subject: [PATCH 102/141] ci: This PR is to trigger periodic CI testing From da6b5b340de0857461326cb97a1476ba977c18dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Sep 2025 19:13:15 +0000 Subject: [PATCH 103/141] ci: This PR is to trigger periodic CI testing From 822ada46d85ef6ef5fd2931417ada90a6489ec88 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Sep 2025 19:13:04 +0000 Subject: [PATCH 104/141] ci: This PR is to trigger periodic CI testing From eee2304d8b9225a4fc0a1350169fdce7f806474d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Sep 2025 19:13:35 +0000 Subject: [PATCH 105/141] ci: This PR is to trigger periodic CI testing From 840aed7a48b28e3bf8d2699154514f5867f56103 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Oct 2025 19:13:29 +0000 Subject: [PATCH 106/141] ci: This PR is to trigger periodic CI testing From f44c1bf4fdecd88b54a3284718f8205290d2bfa7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Oct 2025 19:13:10 +0000 Subject: [PATCH 107/141] ci: This PR is to trigger periodic CI testing From f09d20cf7016ecc2db7085b3888713e7fa5ba94c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Oct 2025 19:13:55 +0000 Subject: [PATCH 108/141] ci: This PR is to trigger periodic CI testing From c7fe30861230211f1dbd8d544d4abd9b6a16dfa2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Oct 2025 19:14:51 +0000 Subject: [PATCH 109/141] ci: This PR is to trigger periodic CI testing From d544fc3aa1600099cacebcf011f901e28327233a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 19:13:45 +0000 Subject: [PATCH 110/141] ci: This PR is to trigger periodic CI testing From 5e727bef9e29dd02f91c01e6fb9b1b2fb4b1bc53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Nov 2025 19:14:53 +0000 Subject: [PATCH 111/141] ci: This PR is to trigger periodic CI testing From a4cc62336a5b12774fe2eb0ee5cdabca8dd5a2c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Nov 2025 19:14:12 +0000 Subject: [PATCH 112/141] ci: This PR is to trigger periodic CI testing From 721548a65edb508a2e48232e2bbef8be44e80a08 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Nov 2025 19:15:29 +0000 Subject: [PATCH 113/141] ci: This PR is to trigger periodic CI testing From f7deb80ae70eeffe009039e9dd6c576738ab56a3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Nov 2025 19:16:19 +0000 Subject: [PATCH 114/141] ci: This PR is to trigger periodic CI testing From 179cac530c6687d78afe527d49452038dea8df14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Dec 2025 19:15:57 +0000 Subject: [PATCH 115/141] ci: This PR is to trigger periodic CI testing From 0666cfdb7387422b8b35f84f5c890d88371bfe58 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Dec 2025 19:16:08 +0000 Subject: [PATCH 116/141] ci: This PR is to trigger periodic CI testing From 92651f383c1e574a5d175c1a76878d01567defa4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Dec 2025 19:16:35 +0000 Subject: [PATCH 117/141] ci: This PR is to trigger periodic CI testing From fdf9c539b3165371f4743fef55f21b36fcef1d31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Dec 2025 19:16:28 +0000 Subject: [PATCH 118/141] ci: This PR is to trigger periodic CI testing From c271c4761e787fc1f8d3623b04870b05e04fe215 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Jan 2026 19:16:43 +0000 Subject: [PATCH 119/141] ci: This PR is to trigger periodic CI testing From 2a3a81d98339f203015cc0979c3c0c4489d4d8fe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Jan 2026 19:16:45 +0000 Subject: [PATCH 120/141] ci: This PR is to trigger periodic CI testing From 8b8ba51eba9217fe6cb98031d8a69b00452f4bff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Jan 2026 19:44:35 +0000 Subject: [PATCH 121/141] ci: This PR is to trigger periodic CI testing From 6569bc9b35d1a2c15e81c5f705984ac4415fff5e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Jan 2026 19:17:40 +0000 Subject: [PATCH 122/141] ci: This PR is to trigger periodic CI testing From 1571045fb74234703373cdc03cd7aa18dbd103b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Jan 2026 19:21:49 +0000 Subject: [PATCH 123/141] ci: This PR is to trigger periodic CI testing From 6cbf05a773f5b0f30f841d376c10bf95359b2ccc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Feb 2026 19:25:15 +0000 Subject: [PATCH 124/141] ci: This PR is to trigger periodic CI testing From 894e07aee431cf41d045d30f863785c2248cfc9c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Feb 2026 19:25:09 +0000 Subject: [PATCH 125/141] ci: This PR is to trigger periodic CI testing From 958c1801024138a23b573d63a6d813329c732a02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Feb 2026 19:25:28 +0000 Subject: [PATCH 126/141] ci: This PR is to trigger periodic CI testing From f661ec11aa01c6083a13474af856183d26470e8c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Feb 2026 19:21:41 +0000 Subject: [PATCH 127/141] ci: This PR is to trigger periodic CI testing From ccfc22838fab31098143d63ff3e6ab8f0e1502d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Mar 2026 19:23:23 +0000 Subject: [PATCH 128/141] ci: This PR is to trigger periodic CI testing From 65baf3362d8e0e9acae72c0a7c30ac4d2b6b77a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Mar 2026 19:27:58 +0000 Subject: [PATCH 129/141] ci: This PR is to trigger periodic CI testing From e7bf031a7d4a46ced7b9a10347c3fbc78af5a0d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Mar 2026 19:26:05 +0000 Subject: [PATCH 130/141] ci: This PR is to trigger periodic CI testing From 75890b75b1461f0af2b4e21f29d0e68bae5979ee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Mar 2026 19:31:34 +0000 Subject: [PATCH 131/141] ci: This PR is to trigger periodic CI testing From ad8be81a377bfdc02efcc8b257de8eefcf89d8d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Apr 2026 19:31:49 +0000 Subject: [PATCH 132/141] ci: This PR is to trigger periodic CI testing From 599259c8ce7be9498c109bc8cb0d8a7fc0762822 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Apr 2026 19:35:39 +0000 Subject: [PATCH 133/141] ci: This PR is to trigger periodic CI testing From f87ad78a06c16e257d7dda83a6bb87a264c809a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 19:41:30 +0000 Subject: [PATCH 134/141] ci: This PR is to trigger periodic CI testing From a3d53ff65f24b961cc09623b64af4a636024e7a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 19:44:42 +0000 Subject: [PATCH 135/141] ci: This PR is to trigger periodic CI testing From 538bd176ac638e0098a7d4bd2f78200ae60b8731 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 19:54:03 +0000 Subject: [PATCH 136/141] ci: This PR is to trigger periodic CI testing From aa2c0581411e938bd3712e340d6fdbd7cf1d0f97 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 May 2026 19:57:03 +0000 Subject: [PATCH 137/141] ci: This PR is to trigger periodic CI testing From d9acc4849e5598e33a535023785edd2ecc721c3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 May 2026 20:01:04 +0000 Subject: [PATCH 138/141] ci: This PR is to trigger periodic CI testing From 78150a091e5ca560e006c039cfa1ac6e9dc82476 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 May 2026 20:06:10 +0000 Subject: [PATCH 139/141] ci: This PR is to trigger periodic CI testing From 4ebe0b1f6cb707898ebb6b790e3a604f2fdf3564 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 May 2026 20:09:06 +0000 Subject: [PATCH 140/141] ci: This PR is to trigger periodic CI testing From a639340a5b1101f6c8aa62680aae118c6d2cf738 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jun 2026 20:09:16 +0000 Subject: [PATCH 141/141] ci: This PR is to trigger periodic CI testing