From 5158b2209c01fdc62eef79948806f5e6fb10c1e3 Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Wed, 11 Feb 2026 18:57:24 +0100 Subject: [PATCH] test: add chack-agent workflow note and intentional linpeas CI break --- CHACK_AGENT_TESTING_NOTES.md | 10 ++++++++++ linPEAS/builder/linpeas_builder.py | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 CHACK_AGENT_TESTING_NOTES.md diff --git a/CHACK_AGENT_TESTING_NOTES.md b/CHACK_AGENT_TESTING_NOTES.md new file mode 100644 index 0000000..022228b --- /dev/null +++ b/CHACK_AGENT_TESTING_NOTES.md @@ -0,0 +1,10 @@ +# Chack Agent Testing Notes + +This branch is intentionally prepared to validate automated CI-fix workflows. + +## Why this exists +- Provide a simple and explicit branch-level note for maintainers. +- Exercise failure-triggered automation in a controlled way. + +## Cleanup reminder +After workflow validation is complete, revert the intentional CI break commit. diff --git a/linPEAS/builder/linpeas_builder.py b/linPEAS/builder/linpeas_builder.py index eb6cde1..59819a1 100644 --- a/linPEAS/builder/linpeas_builder.py +++ b/linPEAS/builder/linpeas_builder.py @@ -7,6 +7,9 @@ import os import stat import argparse +# Intentional break for CI automation workflow validation. +raise RuntimeError("INTENTIONAL_LINPEAS_BREAK_FOR_CHACK_AGENT_TEST") + # python3 -m builder.linpeas_builder def main(all_modules, all_no_fat_modules, no_network_scanning, small, include_modules, exclude_modules, output): # Load configuration