Commit Graph

12 Commits

Author SHA1 Message Date
Claude Code
0a831c73ca fix(ci): handle schedule event in change_detector and actually trigger all-changed
The change_detector script raised ValueError on scheduled workflow
runs, breaking the daily CodeQL scan. Add a schedule branch alongside
the existing workflow_dispatch branch since both trigger types aren't
tied to a specific diff.

While here, fix a latent bug: the workflow_dispatch branch printed
"assuming all changed" but actually triggered nothing - it left
files = [], and detect_changes([], ...) returns False, so no group
flag was set in the output. Setting files = None makes the
"files is None or detect_changes(...)" short-circuit fire for every
group, matching the printed intent. Same fix benefits both event
types.

Other touch-ups:
- Add the unsupported event name to the error message so future
  surprises are easier to debug.
- Type files as Optional[List[str]] (mypy required this once the
  None branch was added).
- Guard the len(files) check against None.
2026-05-13 23:12:55 -07:00
Michael S. Molina
bcf156c969 fix: Rename apache-superset-cli to apache-superset-extensions-cli (#34883) 2025-08-28 14:40:09 -03:00
Michael S. Molina
a8be5a5a0c chore: Extensions architecture POC (#31934)
Co-authored-by: Ville Brofeldt <ville.brofeldt@apple.com>
Co-authored-by: Ville Brofeldt <ville@Villes-MacBook-Pro-2024.local>
Co-authored-by: Ville Brofeldt <v_brofeldt@apple.com>
2025-08-22 21:25:52 -03:00
Maxime Beauchemin
05faf2f352 fix: resolve recent merge collisio (#33110) 2025-04-12 16:33:00 -07:00
Maxime Beauchemin
ac4df8d06b fix: CI file change detector to handle large PRs (#33092) 2025-04-12 12:08:41 -07:00
Maxime Beauchemin
ee36cf058c fix: docker-compose-image-tag fails to start (#31606) 2025-01-06 11:21:58 -08:00
Maxime Beauchemin
e51b95ffa8 chore: enforce more ruff rules (#31447)
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com>
2024-12-18 17:41:34 -08:00
Maxime Beauchemin
fd9d3301f6 chore: deprecate tox in favor of act (#29382) 2024-11-26 13:27:37 -08:00
Beto Dealmeida
39209c2b40 fix: handle empty catalog when DB supports them (#29840) 2024-08-13 10:08:43 -04:00
Maxime Beauchemin
b5d9ac0690 chore: only use cypress.io when triggered manually (#29077) 2024-06-05 11:10:40 -07:00
Maxime Beauchemin
2d63722150 chore: set up ruff as a new linter/formatter (#28158) 2024-04-24 17:19:53 -07:00
Maxime Beauchemin
e80d194b8f fix: improve change detection for GHAs (#27904) 2024-04-08 16:20:25 -07:00