Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changed_files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions .changed_js_like.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions .changed_py.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion .github/codeql/extensions/codeql-pack.yml
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

1 change: 0 additions & 1 deletion tests/test_workflow_lint_blockers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import pytest
import yaml


pytestmark = pytest.mark.unit


Expand Down
5 changes: 1 addition & 4 deletions tests/test_workflow_yamllint_regressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import pytest
import yaml


REPO_ROOT = Path(__file__).resolve().parents[1]


Expand Down Expand Up @@ -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}"
Loading