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 c9d2739 commit 5df1d6eCopy full SHA for 5df1d6e
pr-checks/sync_back.py
@@ -49,7 +49,7 @@ def scan_generated_workflows(workflow_dir: str) -> Dict[str, str]:
49
50
for action_name, version_with_comment in matches:
51
# Only track non-local actions (those with / but not starting with ./)
52
- if '/' in action_name and not action_name.startswith('./'):
+ if not action_name.startswith('./'):
53
# Take the latest version seen (they should all be the same after Dependabot)
54
action_versions[action_name] = version_with_comment.rstrip()
55
0 commit comments