From 08e3e6b07bfec02f5a37d8209fcb2e2a9de38c5d 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/134] 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 88aa773155bd026b34be8dd124ceb1d2afd6227f 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/134] 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 e99f83717ad09bca1092b5d2fe441fa2ed7c46df 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/134] ci: This PR is to trigger periodic CI testing From d5ea6b9f4811b77a79711e76be5cba23d641105a 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/134] ci: This PR is to trigger periodic CI testing From e93167948cb77ae010c2afe4e6889e4b6e407e98 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/134] ci: This PR is to trigger periodic CI testing From 297740b36543e933a7b8dece200d870697124f84 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/134] ci: This PR is to trigger periodic CI testing From e885e90fbf1f2584826fc5be05e37c3e5fc8dc4f 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/134] 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 4e669b3443cd17da6c8f3ecaa87dd204080cbd5b 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/134] ci: This PR is to trigger periodic CI testing From 3fca9610ab36fc130bfc13b470b692fac3087a5e 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/134] ci: This PR is to trigger periodic CI testing From 2061512d00e29eead5a7192e6969bce349a8acca 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/134] ci: This PR is to trigger periodic CI testing From 66eacda328eea70c99ca10d76a492790f4783892 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/134] ci: This PR is to trigger periodic CI testing From fc63d8cc67fb004f250c11a1f69e626a08adee30 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/134] ci: This PR is to trigger periodic CI testing From bc160592dfe8616b5197fcca11aaf9df378f10dd 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/134] ci: This PR is to trigger periodic CI testing From e256913c6d7949b0222dc7883a1c97fddb5a8610 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/134] ci: This PR is to trigger periodic CI testing From e1d5b917cd4271b6f7f32dc83a166379383c219b 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/134] ci: This PR is to trigger periodic CI testing From dfb9458b11396afc2273985784b8796001dc68e5 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/134] ci: This PR is to trigger periodic CI testing From c96ff0a018cae9ce396177845e0ff31cc060bda3 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/134] ci: This PR is to trigger periodic CI testing From e06503055ef6bf35c1fb135d4ad69b47c7e8a2e5 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/134] ci: This PR is to trigger periodic CI testing From 6341530ae738e87303e819c2eacaf571710d90d1 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/134] ci: This PR is to trigger periodic CI testing From 2972da15dc3d027e0d00c0345dcb5bc66c14341d 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/134] ci: This PR is to trigger periodic CI testing From 295e9055a777aafe2e18819e2dd307537043dc0f 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/134] ci: This PR is to trigger periodic CI testing From 050f938276869814afb51b38b8d240fa3122b9ac 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/134] ci: This PR is to trigger periodic CI testing From 9f68ed15cfcb784b7fd3494af49f197d9a6da1e0 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/134] ci: This PR is to trigger periodic CI testing From 30b4d0b470799768c81b0a552b8b7544cdac6ff2 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/134] ci: This PR is to trigger periodic CI testing From e5459227d80f4bf4a6e3442b89528218b7a3baaa 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/134] ci: This PR is to trigger periodic CI testing From ab02ecbd01d26ae503ada443947fde005c968cd4 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/134] ci: This PR is to trigger periodic CI testing From b6d1ea58648c5c6197c819daed3773198c302bae 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/134] ci: This PR is to trigger periodic CI testing From 4c4726797ab38901fea4b54dc4649f5a765dd118 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/134] ci: This PR is to trigger periodic CI testing From 11dd42271dc425349df96a25463c9a3c5712dac3 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/134] ci: This PR is to trigger periodic CI testing From 975aa707af5644250b152700dffe06b61d00413f 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/134] ci: This PR is to trigger periodic CI testing From 16361d228724023286a2c9914f87dbc9f4285c7d 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/134] ci: This PR is to trigger periodic CI testing From df633378f9279c1ae939e9707a98248cd11b3760 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/134] ci: This PR is to trigger periodic CI testing From 19b5a19fc9db3dfb07d927d98b426000037d7809 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/134] ci: This PR is to trigger periodic CI testing From 13edcaf945e51bf657378a9b7994a1929bb54aeb 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/134] ci: This PR is to trigger periodic CI testing From fcb6dfe83c8699d90196ba35af2a6fc89215c197 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/134] ci: This PR is to trigger periodic CI testing From e6b5634d0102cd20d4f27578c49c4b50821b739d 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/134] ci: This PR is to trigger periodic CI testing From d3c24fc95af1b4550ec4c4cac72a2833d075ed9d 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/134] ci: This PR is to trigger periodic CI testing From 6ba88c2664e4f2c0014f1273e3e64bf8a57a0cd2 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/134] ci: This PR is to trigger periodic CI testing From e39cbbfe33a1164bcff243eb42d0ed8069526ca6 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/134] ci: This PR is to trigger periodic CI testing From c06006fa9a6f1bb3c0bca2d7a6826582dc148937 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/134] ci: This PR is to trigger periodic CI testing From b80d0ed20cf78c4fde7ed3092d3a180873157273 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/134] ci: This PR is to trigger periodic CI testing From 283d0f56c3439ec794f6a3d24b2a9c8cbc59a89a 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/134] ci: This PR is to trigger periodic CI testing From f63c97a2ff03fd94f7a12a01e585dc0f65b7b009 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/134] ci: This PR is to trigger periodic CI testing From de1af096fa2ac6bf27aa3e0aa2f754aea30b2073 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/134] ci: This PR is to trigger periodic CI testing From e4d304a23b581da7e17a3726c2053f798b7044e6 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/134] 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 57e21850234a54bec36ed392e29dffee9635e2a5 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/134] ci: This PR is to trigger periodic CI testing From a173ef4c3fb6e39e117be3ab0426ad9923b58754 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/134] ci: This PR is to trigger periodic CI testing From b1b848ff89dec67e27ec202a5dceb2888c073b3e 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/134] ci: This PR is to trigger periodic CI testing From 0a9c67b9fe4b174badee6213d8827907c570fb78 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/134] ci: This PR is to trigger periodic CI testing From de386ba05c798ba774884fe048d25d559648b1fb 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/134] ci: This PR is to trigger periodic CI testing From 83124eb1798d258807c4388fe900e4fc02b2a73e 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/134] ci: This PR is to trigger periodic CI testing From 96700228f3672e362def1af727c295a1ab295b05 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/134] ci: This PR is to trigger periodic CI testing From 716ca22fe530f1ef6de1996ad4d73b9f19a6c3ba 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/134] ci: This PR is to trigger periodic CI testing From e97dc6d6d9b971e2da66a638869cffe9064a030e 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/134] ci: This PR is to trigger periodic CI testing From 02403ce6b0b1338ff4858e4b9dc411cab46237a6 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/134] ci: This PR is to trigger periodic CI testing From 79c63cd28055fdeaf971a926a471df208ac725b3 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/134] ci: This PR is to trigger periodic CI testing From 6195d4b092289596fdb71a0b51d59bd65643d9b5 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/134] ci: This PR is to trigger periodic CI testing From 001f8ea79196d26c9b4fba2b1711ea5f06c87597 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/134] ci: This PR is to trigger periodic CI testing From 5366bb9ca8b74cd94ac5b456ec4d57f6a5d2364f 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/134] ci: This PR is to trigger periodic CI testing From 03936c15409cbc2930742aa5778a7985cd58e157 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/134] ci: This PR is to trigger periodic CI testing From f874f772966e71da56bd263e468c8c70aefabc24 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/134] ci: This PR is to trigger periodic CI testing From 1cb95012a22a634cb9c8580c02bf03a58abc131a 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/134] ci: This PR is to trigger periodic CI testing From 2e8eaf576ff748f8e37c6f1a7b93fefafcca3fd2 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/134] ci: This PR is to trigger periodic CI testing From 6be5f6fbd90c79589402264faadb8a8cfca2b991 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/134] ci: This PR is to trigger periodic CI testing From ac73421e6e8f0cdd98ae33f4e16e621658df2568 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/134] ci: This PR is to trigger periodic CI testing From b67ec6d9a9893217852747feeb395e8e563f2944 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/134] ci: This PR is to trigger periodic CI testing From 31270295745a3e3c925d18b86a1dac782df418ed 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/134] ci: This PR is to trigger periodic CI testing From febec7b4c07867e6524da81190094f32b6c527c8 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/134] ci: This PR is to trigger periodic CI testing From 3613b041b6138656c65ad9c4bf66c886443b84d5 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/134] ci: This PR is to trigger periodic CI testing From 22b46c83640e582ab595e10edf9f408f0f8325a0 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/134] ci: This PR is to trigger periodic CI testing From 13f93fc57a9c5cedf8e0c06786d054e7b645dcda 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/134] ci: This PR is to trigger periodic CI testing From 495e39d5847a0ccd6d9bf2ab08953a62ddf84902 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/134] ci: This PR is to trigger periodic CI testing From 7e9e9643809e30d3433bd382cc7680fcf6441b2d 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/134] ci: This PR is to trigger periodic CI testing From c14468729dcf800e23961764e752fcbc925ad07e 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/134] ci: This PR is to trigger periodic CI testing From 9e09d2029d3b16d7525cfec9ba78fd6dfa0f4e0b 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/134] ci: This PR is to trigger periodic CI testing From fab3977abfe82fbb6f20b7fde5cc4a28550d410d 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/134] ci: This PR is to trigger periodic CI testing From 5187727e111235587c38ffed5fcb2d5364758ca6 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/134] ci: This PR is to trigger periodic CI testing From 33151947f7d5279786b1078c9a23cff4e93eb3be 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/134] ci: This PR is to trigger periodic CI testing From a5ca94769045bbe074500b7ac2fa6ef901de25ec 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/134] ci: This PR is to trigger periodic CI testing From 4fe864b7f1fb603d7717ed6f826fc3394ea2afe4 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/134] ci: This PR is to trigger periodic CI testing From 1b44380ed0cbbcd2a852f4cfc3e4f0399f0dc885 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/134] ci: This PR is to trigger periodic CI testing From bbc27b9a71429fdaebfd8fcb4b0af3b6e7d7784e 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/134] ci: This PR is to trigger periodic CI testing From cc5e8b7afe703697ec151ae9ba0f30806827d3fe 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/134] ci: This PR is to trigger periodic CI testing From 3f264ed2646cccb37ef3b60a74cf90b80380bdf9 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/134] ci: This PR is to trigger periodic CI testing From e59ba1753b5fb6d25a14325cc6e7fa79d6c851c7 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/134] ci: This PR is to trigger periodic CI testing From c3e1709c32fe781c7b38009e13fe37a139cd5707 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/134] 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 7749f93d581ce5ce33094ea254ed9bb8c8d584f7 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/134] 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 c8a72940dd74186dbf47225a3e788dbabfb44e18 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/134] ci: This PR is to trigger periodic CI testing From 4c351817dda31031ad16aacc88a1512d081bae4c 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/134] ci: This PR is to trigger periodic CI testing From d752ccd2c50d076f99597a0a19612489f039fc0b 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/134] ci: This PR is to trigger periodic CI testing From f0864bc12c4ae03426e9230017ebb9a0ca935f96 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/134] ci: This PR is to trigger periodic CI testing From 0993c8a026c215ad34e3aae9a8ce93d1b3ebc473 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/134] ci: This PR is to trigger periodic CI testing From 204c8f7ac9fa613e1c68062a6f8b363946d18757 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/134] ci: This PR is to trigger periodic CI testing From 79a180756bda75cae4d6f77e94b227d5ec276de0 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/134] ci: This PR is to trigger periodic CI testing From 74cd4d150040ae471f5b0121a0763c2fe6280d02 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/134] ci: This PR is to trigger periodic CI testing From 9a56edc15af738c60d62d091907ea4c9c2c84c4c 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/134] ci: This PR is to trigger periodic CI testing From ce7f5fcfd10006d95eb2925476893633c381102e 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/134] ci: This PR is to trigger periodic CI testing From 449bdaac02d14693d3276bef6bc85498dc277f26 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/134] ci: This PR is to trigger periodic CI testing From 8bb24460e8a791c56408374755c6edac073ce3d6 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/134] ci: This PR is to trigger periodic CI testing From 774d9d7a5b19fff1d11a47b5c6ae3a0e92272fb4 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/134] ci: This PR is to trigger periodic CI testing From 9cc6a26e1a597661d5c597092d851033e019a640 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/134] ci: This PR is to trigger periodic CI testing From 28964a763427f70303a9a28a40b76275683815b8 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/134] ci: This PR is to trigger periodic CI testing From de31abb5a3ec502ef57462636a6593beff7fbb94 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/134] ci: This PR is to trigger periodic CI testing From 26795a2b694f763245449c9b36bc0817e23485a8 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/134] ci: This PR is to trigger periodic CI testing From db36153aa106ccded70f7b64ee332f1852fa76e0 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/134] ci: This PR is to trigger periodic CI testing From fe48ed15e0cea3c82db5f49104a540ead09bde06 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/134] ci: This PR is to trigger periodic CI testing From 420cd5dec63ede06c1a0d02f1de41cb9065e14c6 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/134] ci: This PR is to trigger periodic CI testing From 9a77ca175d0225ead648c9feae041db564babc91 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/134] ci: This PR is to trigger periodic CI testing From 7e2822a374bc7f5f590926fb90561b713532c431 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/134] ci: This PR is to trigger periodic CI testing From 62a3a14849148faaa79d56021f27ffaac406f74f 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/134] ci: This PR is to trigger periodic CI testing From 27e76cb1484985c0e8edf86fa3e4f56af307c995 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/134] ci: This PR is to trigger periodic CI testing From 307f9f3748e3d3b15bb55a55639482713b1727e2 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/134] ci: This PR is to trigger periodic CI testing From 7059685977d6dfaf309894064bfb60bf93cf483c 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/134] ci: This PR is to trigger periodic CI testing From 330ec9f79e94f52336b608e3596679097bb2bfe5 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/134] ci: This PR is to trigger periodic CI testing From 83b257bc6ecb4d26ecf509cf5faa7efc40898882 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/134] ci: This PR is to trigger periodic CI testing From aa269f5fbc9097fb5635827fdde030c792764d1f 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/134] ci: This PR is to trigger periodic CI testing From 3ee5e68bce147a75ea102320c9f9e218a99685c3 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/134] ci: This PR is to trigger periodic CI testing From d118b420ff5e98ef570539505b091276983fd174 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/134] ci: This PR is to trigger periodic CI testing From 21bfedd4c7158c5c119ab740bb179d7c2f5cdba5 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/134] ci: This PR is to trigger periodic CI testing From d92f6db7650364dc8103b80d9dce3ef0f6ae8d44 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/134] ci: This PR is to trigger periodic CI testing From 79d6a8088121957f0bd418da00f1f5a24f73bed4 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/134] ci: This PR is to trigger periodic CI testing From e1a51a5a8e70201c25d6f85bb1c59a2a07ae8032 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/134] ci: This PR is to trigger periodic CI testing From 8d5a056caf5eb2d83422ec26eaeed558eb2f9525 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/134] ci: This PR is to trigger periodic CI testing From 510b785671b3fe51b701feaa9a36feedac105ceb 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/134] ci: This PR is to trigger periodic CI testing From bc63e3736d60b7eeb0a0ec8a58b8b8662e1c9ba8 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/134] ci: This PR is to trigger periodic CI testing From cadc4e52a999f41a18d3b43ce3984f175a2ce440 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/134] ci: This PR is to trigger periodic CI testing From 251b77060e7a914f89bab50b9c38cfdce80b9979 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/134] ci: This PR is to trigger periodic CI testing From 0b3362b5a9fe2ba4e1fbe4ad2016ac1ddb4a174b 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/134] ci: This PR is to trigger periodic CI testing From bcba33ef4f368c49491eab9e6e5493d0ccf030d7 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/134] ci: This PR is to trigger periodic CI testing From 8357c0c28ea9968f831136a59f5f54723dbfda63 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/134] ci: This PR is to trigger periodic CI testing From c4b15808aba07c14edcfab083bdea2b4ada7fa74 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/134] ci: This PR is to trigger periodic CI testing From a2e93b45f736af3294ec5c47dd49e156d8d0cb44 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/134] ci: This PR is to trigger periodic CI testing From 62e7b49db189076789e86bca1c4cdea9cbec4f0c 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/134] ci: This PR is to trigger periodic CI testing From 370d804d4f265bf7234f47d997ce9d2b474541b7 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/134] ci: This PR is to trigger periodic CI testing