From 86ae972dbff99afc91fe9e150f75fc866f83c0a3 Mon Sep 17 00:00:00 2001 From: Bryan-Roe <74067792+Bryan-Roe@users.noreply.github.com> Date: Sat, 11 Jul 2026 20:10:01 +0000 Subject: [PATCH] ci(style): apply automated autofixes --- .changed_files.txt | 5 +++++ .changed_js_like.txt | 2 ++ .changed_py.txt | 2 ++ .github/codeql/extensions/codeql-pack.yml | 1 - tests/test_workflow_lint_blockers.py | 1 - tests/test_workflow_yamllint_regressions.py | 5 +---- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.changed_files.txt b/.changed_files.txt index 908e8818b..3551728f7 100644 --- a/.changed_files.txt +++ b/.changed_files.txt @@ -119,6 +119,7 @@ .github/agents/vision-ai.agent.md .github/appmod/assessment/reports/dotnet-assessment-config.yaml .github/codeql/codeql-config.yml +.github/codeql/extensions/codeql-pack.yml .github/copilot-instructions.full.md .github/copilot-instructions.md .github/copilot.yml @@ -223,6 +224,7 @@ .github/prompts/train.prompt.md .github/rulesets/main-default-automation.ruleset.json .github/secret_scanning.yml +.github/security/sensitive-files.txt .github/skills/agi-reasoning-debug-workflow/SKILL.md .github/skills/ai-agent-implementation-workflow/SKILL.md .github/skills/ai-feature-planning-workflow/SKILL.md @@ -319,6 +321,7 @@ .github/workflows/markdown-quality.yml .github/workflows/merge-gate.yml .github/workflows/nightly-regression.yml +.github/workflows/ossar.yml .github/workflows/pages.yml .github/workflows/platform-health-daily.yml .github/workflows/pr-checks.yml @@ -2848,7 +2851,9 @@ tests/test_vision_inference.py tests/test_vram_calculator.py tests/test_watch_continuous_automation.py tests/test_web_app_security.py +tests/test_workflow_lint_blockers.py tests/test_workflow_validation_workflow.py +tests/test_workflow_yamllint_regressions.py tests/test_writer_reviewer_prototype_workflow.py tests/unit/__init__.py tests/unit/test_aria_schema_endpoint.py diff --git a/.changed_js_like.txt b/.changed_js_like.txt index 5014dbeb6..2e8a594bd 100644 --- a/.changed_js_like.txt +++ b/.changed_js_like.txt @@ -95,6 +95,7 @@ .github/agents/vision-ai.agent.md .github/appmod/assessment/reports/dotnet-assessment-config.yaml .github/codeql/codeql-config.yml +.github/codeql/extensions/codeql-pack.yml .github/copilot-instructions.full.md .github/copilot-instructions.md .github/copilot.yml @@ -280,6 +281,7 @@ .github/workflows/markdown-quality.yml .github/workflows/merge-gate.yml .github/workflows/nightly-regression.yml +.github/workflows/ossar.yml .github/workflows/pages.yml .github/workflows/platform-health-daily.yml .github/workflows/pr-checks.yml diff --git a/.changed_py.txt b/.changed_py.txt index b7d56a2d6..f78c55f49 100644 --- a/.changed_py.txt +++ b/.changed_py.txt @@ -726,7 +726,9 @@ tests/test_vision_inference.py tests/test_vram_calculator.py tests/test_watch_continuous_automation.py tests/test_web_app_security.py +tests/test_workflow_lint_blockers.py tests/test_workflow_validation_workflow.py +tests/test_workflow_yamllint_regressions.py tests/test_writer_reviewer_prototype_workflow.py tests/unit/__init__.py tests/unit/test_aria_schema_endpoint.py diff --git a/.github/codeql/extensions/codeql-pack.yml b/.github/codeql/extensions/codeql-pack.yml index 8b1378917..e69de29bb 100644 --- a/.github/codeql/extensions/codeql-pack.yml +++ b/.github/codeql/extensions/codeql-pack.yml @@ -1 +0,0 @@ - diff --git a/tests/test_workflow_lint_blockers.py b/tests/test_workflow_lint_blockers.py index 72cfb1418..43975f115 100644 --- a/tests/test_workflow_lint_blockers.py +++ b/tests/test_workflow_lint_blockers.py @@ -5,7 +5,6 @@ import pytest import yaml - pytestmark = pytest.mark.unit diff --git a/tests/test_workflow_yamllint_regressions.py b/tests/test_workflow_yamllint_regressions.py index ca4e34e28..b743e90ab 100644 --- a/tests/test_workflow_yamllint_regressions.py +++ b/tests/test_workflow_yamllint_regressions.py @@ -5,7 +5,6 @@ import pytest import yaml - REPO_ROOT = Path(__file__).resolve().parents[1] @@ -54,8 +53,6 @@ def test_ossar_workflow_steps_and_branch_spacing_regression() -> None: def test_summary_workflow_has_no_trailing_whitespace() -> None: content = _read(".github/workflows/summary.yml") trailing_ws_lines = [ - line_number - for line_number, line in enumerate(content.splitlines(), start=1) - if line != line.rstrip(" \t") + line_number for line_number, line in enumerate(content.splitlines(), start=1) if line != line.rstrip(" \t") ] assert not trailing_ws_lines, f"Trailing whitespace found on lines: {trailing_ws_lines}"