Skip to content

Commit dd16d68

Browse files
authored
Exclude broken symlink in ecosystem check (astral-sh#23921)
Summary -- This should resolve the ecosystem errors in astral-sh#23919. Test Plan -- This PR, first with the exclude commented out, then included.
1 parent 3f94c6a commit dd16d68

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

python/ruff-ecosystem/ruff_ecosystem/defaults.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
Project(
2424
repo=Repository(owner="apache", name="airflow", ref="main"),
2525
check_options=CheckOptions(select="ALL"),
26+
config_overrides={
27+
# Broken symlink
28+
"exclude": [
29+
"task-sdk/src/airflow/sdk/_shared/AGENTS.md",
30+
]
31+
},
2632
),
2733
Project(
2834
repo=Repository(owner="apache", name="superset", ref="master"),

0 commit comments

Comments
 (0)