From aa7e375e5d894f9d6171ae104dc90c75f670164a Mon Sep 17 00:00:00 2001 From: Simone Date: Sun, 17 May 2026 00:22:41 +0200 Subject: [PATCH] fix: add missing workflow_dispatch trigger to lint.yml fix: update .gitignore to include AI tools and Python bytecode --- .gitea/workflows/lint.yml | 2 ++ .gitignore | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml index d3fdec2..aef7e1f 100644 --- a/.gitea/workflows/lint.yml +++ b/.gitea/workflows/lint.yml @@ -5,9 +5,11 @@ # Failures block the PR. Fix warnings with: # Invoke-ScriptAnalyzer -Path scripts\ -Recurse -Fix + name: Lint on: + workflow_dispatch: push: paths: - '**.ps1' diff --git a/.gitignore b/.gitignore index c7b87ea..1f9386f 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,10 @@ $RECYCLE.BIN/ # Copilot Orchestrator temporary files .orchestrator/ .worktrees/ + +# AI/strumenti locali +.claude/ + +# Python bytecode +__pycache__/ +*.pyc