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 a947cfb commit c037dbbCopy full SHA for c037dbb
kernel_patches_daemon/github_sync.py
@@ -321,7 +321,10 @@ async def sync_patches(self) -> None:
321
if worker._is_relevant_pr(pr):
322
parsed_ref = parse_pr_ref(pr.head.ref)
323
# ignore unknown format branch/PRs.
324
- if parsed_pr_ref_ok(parsed_ref):
+ if not parsed_pr_ref_ok(parsed_ref):
325
+ logger.warning(
326
+ f"Unexpected format of the branch name: {pr.head.ref}"
327
+ )
328
continue
329
330
series_id = parsed_ref["series_id"]
0 commit comments