From 256c7c691af266e4557a0232bfad6bff34d87811 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/147] 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 95fa29404afa9da2a67d8874d23a4358bb8bcd38 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/147] 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 86934ca08b84732dec84b398616c3c6eedcad18a 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/147] ci: This PR is to trigger periodic CI testing From 957ee77da1bd19b7e21b41cb4ed68e2ef9f0b16c 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/147] ci: This PR is to trigger periodic CI testing From 2fae8427b32b845b18330c1ea14011d3f5af19a5 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/147] ci: This PR is to trigger periodic CI testing From d83a2411da2ef92fc667a64094966491bbb53762 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/147] ci: This PR is to trigger periodic CI testing From 5ac8f4d4f3e2e735f8b102d29dd53df8bda43a32 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/147] 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 2afe29cb1a8fa4d453eac37ba9cdee8795ded2bd 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/147] ci: This PR is to trigger periodic CI testing From e2f850901e643a7b9725d41e9eaf169cc5190c29 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/147] ci: This PR is to trigger periodic CI testing From f62797a1abcd46da7adff685e712533d024db2ab 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/147] ci: This PR is to trigger periodic CI testing From ac167bf2c3348b07154345719dde03ac06f50148 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/147] ci: This PR is to trigger periodic CI testing From f62d559ad498d5a1ba85968563388830f66a4298 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/147] ci: This PR is to trigger periodic CI testing From 07174da4d1c0bcb09b940e5f7bcc208e1fedaa58 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/147] ci: This PR is to trigger periodic CI testing From c0a8e307f25fff67250b5e1485dcf64ae1a39407 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/147] ci: This PR is to trigger periodic CI testing From fe08ffb5f02b527136731bfa82e5bbcc37e8b92b 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/147] ci: This PR is to trigger periodic CI testing From 484abb7f02cf963f3c0f53d1aa3caff5afec977e 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/147] ci: This PR is to trigger periodic CI testing From 03db6858db8eaf9772aedecb0131f726763f2e79 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/147] ci: This PR is to trigger periodic CI testing From 7212abfade0e951f4e6d4569164e7b450b494a24 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/147] ci: This PR is to trigger periodic CI testing From 10e6b38f1afe01036a86d8a07c121a07d769774d 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/147] ci: This PR is to trigger periodic CI testing From 60d64e72ab0b33ca78d53836f9afe6a7d64da823 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/147] ci: This PR is to trigger periodic CI testing From 0b53f3f5efeca6a340d189965dc6152e801ee2a8 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/147] ci: This PR is to trigger periodic CI testing From 01e8ce135920f9c46712a167f820e63d1523e872 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/147] ci: This PR is to trigger periodic CI testing From 6ffa62dbe22238af21f71e058f6b687e77daf7d2 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/147] ci: This PR is to trigger periodic CI testing From 8a031f640f5a3afd6b26b97191b8439c6d40c0ca 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/147] ci: This PR is to trigger periodic CI testing From 42418d55500b2e52b24fe40d31d13972444baea7 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/147] ci: This PR is to trigger periodic CI testing From e77e3ad5c8f157362ec9c6aa3b133793370415c4 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/147] ci: This PR is to trigger periodic CI testing From 44e6fdc9896ec7a0a08e71bd1c0aebf0541bf48c 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/147] ci: This PR is to trigger periodic CI testing From 7de1560c4aade4a164d0920c618ab8367b11cf32 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/147] ci: This PR is to trigger periodic CI testing From 973009517709bab888c825545eda1250f13225a9 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/147] ci: This PR is to trigger periodic CI testing From 5bd4c3b7b90831dfdc35df0ee2c287a02697dd65 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/147] ci: This PR is to trigger periodic CI testing From 4844f144f8d508b1a5939520e16810fcccc2951d 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/147] ci: This PR is to trigger periodic CI testing From ef0a7576ee2ea488a4d5111d56cc21968c0106a7 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/147] ci: This PR is to trigger periodic CI testing From c1a300b5ea2acc45706561deb9d6e176e371062d 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/147] ci: This PR is to trigger periodic CI testing From b8970cfa8bf88e8f00052b2f2bb90b93984fa7db 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/147] ci: This PR is to trigger periodic CI testing From 3dd39e6b2fe492613d58f36b8a010927f8d58f0a 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/147] ci: This PR is to trigger periodic CI testing From 52c3df59636cca3c084b10a3f9d90f47e2f794b8 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/147] ci: This PR is to trigger periodic CI testing From 0fd3957bd48599a868fb9c6e7ce047a7e6d77efc 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/147] ci: This PR is to trigger periodic CI testing From bde437db634da75f1025da3264066faf80739ba9 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/147] ci: This PR is to trigger periodic CI testing From 9b78a9507efbbc16e15546e62e41ce0dad18f7b8 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/147] ci: This PR is to trigger periodic CI testing From 442ee35e5e8a9082585e1349d13e4080d3109d23 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/147] ci: This PR is to trigger periodic CI testing From d3d2421781478d2f329911fa713706560f049475 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/147] ci: This PR is to trigger periodic CI testing From 0aed4c05a77c9c57f1d69ec2005b69e58c42fb13 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/147] ci: This PR is to trigger periodic CI testing From 3d17937f54b82ab40be3a3391a3b139994d0c920 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/147] ci: This PR is to trigger periodic CI testing From 6e31c811cdfdd07635edbdabf017040c3412943d 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/147] ci: This PR is to trigger periodic CI testing From 16a228e0384d7e997a8f32fadb66db7cc9eb38da 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/147] 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 65202002e9643c62ae94f5adba947889c2c6d31f 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/147] ci: This PR is to trigger periodic CI testing From e1de208472df59fddd5d61d72cd9d25430caf24e 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/147] ci: This PR is to trigger periodic CI testing From cdc6ef7139a218db940332880b3437ac0b324f33 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/147] ci: This PR is to trigger periodic CI testing From 5b3a4590b5be49259c5a6410de1b89575680dbfb 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/147] ci: This PR is to trigger periodic CI testing From 83756135c496a430f191855e063555443bdb6b7e 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/147] ci: This PR is to trigger periodic CI testing From 4c27ea5fdb4b8c6506666759f1a6649d9a015137 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/147] ci: This PR is to trigger periodic CI testing From 328a7a14ff836e1c5b74910c3c2ece6f5ed75190 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/147] ci: This PR is to trigger periodic CI testing From b35df71deb08dafe52015d9f54f452ab05442345 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/147] ci: This PR is to trigger periodic CI testing From 0c54ad47e7bce33af0b36a81708cf65d25417fc1 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/147] ci: This PR is to trigger periodic CI testing From b7a44bc2628630795439efd4d1a9adeb29d71e27 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/147] ci: This PR is to trigger periodic CI testing From f5b2bef4d1af4f57499ed723984965be08978107 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/147] ci: This PR is to trigger periodic CI testing From 4030c264dfe4473db10226c52d3ce8e4e43a3966 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/147] ci: This PR is to trigger periodic CI testing From 68101cda684c27475eb233b92755ca6814124354 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/147] ci: This PR is to trigger periodic CI testing From 2523cda554a663d78cb27ff9fbde5773f6818a57 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/147] ci: This PR is to trigger periodic CI testing From 9ff738a5b745712b0c5faa1e945e57cb32178f07 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/147] ci: This PR is to trigger periodic CI testing From 5bcf506df917e04a0b453e8851bee09e304b01d5 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/147] ci: This PR is to trigger periodic CI testing From 0a45d72a39f4dd6f9f5257abdf91d1c985e325f1 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/147] ci: This PR is to trigger periodic CI testing From 9bf25c78c0d44df3934fe5c6724151fb4097a9f3 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/147] ci: This PR is to trigger periodic CI testing From b9b3ea1a588492ed9b2f7965c11859f8a539ed5d 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/147] ci: This PR is to trigger periodic CI testing From 427cdc0d122cf86ce03e00a6fe260e47e9b0fa7b 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/147] ci: This PR is to trigger periodic CI testing From 4e06f623590321d5242eda0db2c0c96d809c12bb 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/147] ci: This PR is to trigger periodic CI testing From 300f6c755caefcfd6732d45de6a328179db4937e 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/147] ci: This PR is to trigger periodic CI testing From d6b48f2ca74e4bcf026c6ed23b30c218f4f88c80 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/147] ci: This PR is to trigger periodic CI testing From a75f024eaf2e3c610a84112302c937fae7f3aa9c 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/147] ci: This PR is to trigger periodic CI testing From 96ea5d993e637945e78527e5c86ec7289c2e5a12 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/147] ci: This PR is to trigger periodic CI testing From 4324343a31a9cedddebaba1322c91c8cdf1375e7 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/147] ci: This PR is to trigger periodic CI testing From 5f074deea3bbac601567911aa53782ef68f556db 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/147] ci: This PR is to trigger periodic CI testing From c8518ae8281ae730a1cefc5e86ab49f846eb79fa 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/147] ci: This PR is to trigger periodic CI testing From babbd1c467eaeec52cbf2aec670c81d7338f10ae 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/147] ci: This PR is to trigger periodic CI testing From 15060b43f5da53d24e6dee276f94f2bbc59da9ee 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/147] ci: This PR is to trigger periodic CI testing From ce033ca09a9edd5445086b25fab5859f74e19050 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/147] ci: This PR is to trigger periodic CI testing From b2464af536a734843fcac2760da8a2513361373d 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/147] ci: This PR is to trigger periodic CI testing From 7bdd891e6a37fda0ea90e6caf3ec74d870f542e4 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/147] ci: This PR is to trigger periodic CI testing From 3849c0996bd7e816e5a468539168bce2508136f8 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/147] ci: This PR is to trigger periodic CI testing From 41f0185ffdc05e74996b6584b6bfbd1e70410265 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/147] ci: This PR is to trigger periodic CI testing From 9a37ad322f634ee765fa11834d08988ce7dd5a8d 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/147] ci: This PR is to trigger periodic CI testing From fa680795f75951ca38a36524603460b8cd152548 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/147] ci: This PR is to trigger periodic CI testing From c08e836d00221f714d89f22906b99df0141fe273 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/147] ci: This PR is to trigger periodic CI testing From c92329a53b2c0169521f053efcdc07eb00e1c37e 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/147] ci: This PR is to trigger periodic CI testing From a197307ea0c898cf29d2c1a9286e84bef9c70ff1 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/147] ci: This PR is to trigger periodic CI testing From b96838885f0177edba72f8523305f92a22029fad 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/147] 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 70eea6a704168c5e30f70cd9a45e9b2897e5bf10 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/147] 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 f7b57bfd92d6bbd4b92030997840336d41c168be 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/147] ci: This PR is to trigger periodic CI testing From 940f25a31c9bc158c49f3d6608d48382dd0454a7 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/147] ci: This PR is to trigger periodic CI testing From 90e6837084788b50b6d156ec6f1ed8daccfba759 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/147] ci: This PR is to trigger periodic CI testing From 834a1cee739241ebec597a2196a1de305cc80d75 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/147] ci: This PR is to trigger periodic CI testing From 85fb282dd74814645e6bf71b4458897977fdfdde 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/147] ci: This PR is to trigger periodic CI testing From fdd6c503f5fce83d3c3916c4790a0d32b89ee661 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/147] ci: This PR is to trigger periodic CI testing From 34e2670091fe23347d1d5cdd2385717cb9b7801d 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/147] ci: This PR is to trigger periodic CI testing From 6c8e7f2602ba7d8920c1bb443478d620ccc063fc 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/147] ci: This PR is to trigger periodic CI testing From bc4d869f675fda2863b631f7182a4a4a0e844c23 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/147] ci: This PR is to trigger periodic CI testing From ab21d12620b1734b3958191f5f6eedfa56c66906 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/147] ci: This PR is to trigger periodic CI testing From 5f83d2e1fc1d3bdfb0b2545e0caaa5ec417e4fc6 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/147] ci: This PR is to trigger periodic CI testing From 6c7bd16306996c4deeadf8f7b13e3b15b26c464b 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/147] ci: This PR is to trigger periodic CI testing From 80e68eab13d08dad87137f2e3865170da20a09ce 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/147] ci: This PR is to trigger periodic CI testing From 62e1bd6e1028d162fef6cdd7c662c88e38162103 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/147] ci: This PR is to trigger periodic CI testing From c1129cfc38f00fa65357c320c06080c40b653ea1 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/147] ci: This PR is to trigger periodic CI testing From 931a34c1f9eb4a6025166a65bd8b7672824c054d 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/147] ci: This PR is to trigger periodic CI testing From 6f2eba7a8fb972b3cb4303439e018e6df8915967 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/147] ci: This PR is to trigger periodic CI testing From 17084e5a5482994675f7a8107f10cbc0c31fb191 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/147] ci: This PR is to trigger periodic CI testing From 08661fb81cefb55423b9a77b7aa6d734e04ca092 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/147] ci: This PR is to trigger periodic CI testing From c1bb12588ee3ac0fb3116d085ed3ebf5db87ec00 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/147] ci: This PR is to trigger periodic CI testing From 256dd4f08bdd174b9dfa3368c6477401d6625866 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/147] ci: This PR is to trigger periodic CI testing From acd0e330a584fbf90d9a518d32f206633731dfd6 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/147] ci: This PR is to trigger periodic CI testing From 9b5217cfd3ce837a553bb464d887b598cfeb1f0d 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/147] ci: This PR is to trigger periodic CI testing From 236be24bff4870678de0a1dbc78aa69e1646d823 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/147] ci: This PR is to trigger periodic CI testing From a405d33788cfd138533b2f9029b86f633ec22f28 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/147] ci: This PR is to trigger periodic CI testing From e7566328e05bfd55a06743a8e7b3488942b591f9 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/147] ci: This PR is to trigger periodic CI testing From be374d406573f4955977dd8e2ed05944021f6283 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/147] ci: This PR is to trigger periodic CI testing From 5d0c0e6cf4a351e18efef209f3ffe51afe498aa4 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/147] ci: This PR is to trigger periodic CI testing From 6763050360cadcad4e2e78bb6a01dc772f57c23c 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/147] ci: This PR is to trigger periodic CI testing From fd0f16dfa85bdb7ea53d374b6fa2a22d9143b08f 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/147] ci: This PR is to trigger periodic CI testing From 2172e4f5f25bcbd6df791007f4826ef01547a1f6 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/147] ci: This PR is to trigger periodic CI testing From b4789febf6685f3bf3592120ff79e1a3ed230ec3 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/147] ci: This PR is to trigger periodic CI testing From dc4a86ecbb072bfb6f690ede8e003b5edd0e5b51 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/147] ci: This PR is to trigger periodic CI testing From adb6397cd1e7b7eee22831b5fc1736a6bd897736 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/147] ci: This PR is to trigger periodic CI testing From 1e5cda8b1253ae7b7bd13382442b0d72b11248ff 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/147] ci: This PR is to trigger periodic CI testing From 224f96464c8676f22aec103075e150e3882e213a 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/147] ci: This PR is to trigger periodic CI testing From 70cea0c9785d03cfe51ee8e5d755ea39eafa1282 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/147] ci: This PR is to trigger periodic CI testing From 9a2ca6f405781899936b7f0d802e8772c4f82422 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/147] ci: This PR is to trigger periodic CI testing From 96886bd230b66061b0a2967056d5c8fc1b2de187 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/147] ci: This PR is to trigger periodic CI testing From 123f2941f2fbfc398d69f80433fa3e5cb0db6d12 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/147] ci: This PR is to trigger periodic CI testing From 972669a74dcb75e71d4c14d79ec179d3b80d7394 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/147] ci: This PR is to trigger periodic CI testing From 8be803c910c468d63419a4a58a79d3c436ce2a62 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/147] ci: This PR is to trigger periodic CI testing From fea34f8eb90c689f2d567cb36f7137ffe75f8dcd 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/147] ci: This PR is to trigger periodic CI testing From f796d41173606014dfca8b5fed2e81505b77ec45 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/147] ci: This PR is to trigger periodic CI testing From 79233385ece17ece6459b6fa281876726e3ca110 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/147] ci: This PR is to trigger periodic CI testing From 965ca901b4f89be9ccf1512d107b47f32c5216ff 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/147] ci: This PR is to trigger periodic CI testing From be9b4c5bc0528d3a910e70a62c181c0f6c5f81fb 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/147] ci: This PR is to trigger periodic CI testing From 624eaafcef9f41c7c8518d5852d416779d16a522 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/147] ci: This PR is to trigger periodic CI testing From c3f3c5f2adcc788220d34015b05992a72667cda1 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/147] ci: This PR is to trigger periodic CI testing From 8e3a5489f9ecd3a81b4032451abf4167de3cd21b 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/147] ci: This PR is to trigger periodic CI testing From b0fab43323ec0ec4cea499b6d20300cf1b6fdca9 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/147] ci: This PR is to trigger periodic CI testing From 57c93cbceb296ac5d595e3a3b5a2e9119b585344 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/147] ci: This PR is to trigger periodic CI testing From f0fee50d79e485a29d1237cf7e41e67cf452d8fa 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/147] ci: This PR is to trigger periodic CI testing From 5a208cc070f2ac07e40b2a1e3997544f11c8830a 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/147] ci: This PR is to trigger periodic CI testing From b3c61dc2614365f97d98e845882cea48e8064ed5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jun 2026 20:16:23 +0000 Subject: [PATCH 142/147] ci: This PR is to trigger periodic CI testing From dd7073c938cc71c9d4e3fa7617fccc40840a2bf5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 20:15:40 +0000 Subject: [PATCH 143/147] ci: This PR is to trigger periodic CI testing From d2a10c91009c46e5457d0b0493330849b08daf90 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 20:08:44 +0000 Subject: [PATCH 144/147] ci: This PR is to trigger periodic CI testing From ec47bf8e6a4388443dfb9e894a198ce4c326e4d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Jul 2026 20:08:55 +0000 Subject: [PATCH 145/147] ci: This PR is to trigger periodic CI testing From 6f597a362b675c15d8e6c41584b5ab77130920d4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 20:05:25 +0000 Subject: [PATCH 146/147] ci: This PR is to trigger periodic CI testing From 0c143f2b97fea7afc55a7efc178798d57a275cb9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 20:03:39 +0000 Subject: [PATCH 147/147] ci: This PR is to trigger periodic CI testing