Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: remove redundant paths from requirements workflow #275

Merged
merged 1 commit into from
Jan 12, 2024
Merged
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
3 changes: 3 additions & 0 deletions src/compwa_policy/check_dev_files/update_pip_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from __future__ import annotations

import sys
from glob import glob

from compwa_policy.check_dev_files.github_workflows import (
remove_workflow,
Expand Down Expand Up @@ -71,7 +72,9 @@ def overwrite_workflow(workflow_file: str) -> None:
if frequency == "outsource":
del expected_data["on"]["schedule"]
else:
paths: list[str] = expected_data["on"]["pull_request"]["paths"]
expected_data["on"]["schedule"][0]["cron"] = _to_cron_schedule(frequency)
expected_data["on"]["pull_request"]["paths"] = [p for p in paths if glob(p)]
workflow_path = CONFIG_PATH.github_workflow_dir / workflow_file
if not workflow_path.exists():
update_workflow(yaml, expected_data, workflow_path)
Expand Down
Loading