We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f18ed30 commit 713094fCopy full SHA for 713094f
src/sp_repo_review/checks/github.py
@@ -17,7 +17,7 @@ def workflows(root: Traversable) -> dict[str, Any]:
17
workflows_dict: dict[str, Any] = {}
18
if workflows_base_path.is_dir():
19
for workflow_path in workflows_base_path.iterdir():
20
- if workflow_path.name.endswith(".yml"):
+ if workflow_path.name.endswith((".yml", ".yaml")):
21
with workflow_path.open("rb") as f:
22
workflows_dict[Path(workflow_path.name).stem] = yaml.safe_load(f)
23
0 commit comments