Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo committed Feb 4, 2024
1 parent f564e19 commit 1a05b1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -96,18 +96,18 @@ def calculate_hint(changed_files: list[str]) -> Hint:

for p in changed_files:
# workflow behavior tests affected
if p == ".github/workflows/behavior_test.yml":
if p == ".github/workflows/test_behavior.yml":
hint.core = True
for language in LANGUAGE_BINDING:
setattr(hint, f"binding_{language}", True)
hint.all_service = True

if p == ".github/workflows/behavior_test_core.yml":
if p == ".github/workflows/test_behavior_core.yml":
hint.core = True
hint.all_service = True

for language in LANGUAGE_BINDING:
if p == f".github/workflows/behavior_test_binding_{language}.yml":
if p == f".github/workflows/test_behavior_binding_{language}.yml":
setattr(hint, f"binding_{language}", True)
hint.all_service = True
# core affected
Expand Down
File renamed without changes.

0 comments on commit 1a05b1a

Please sign in to comment.