Skip to content

Commit 6168d39

Browse files
committed
Skip versions marked as experimental when setting required checks.
1 parent 5fcc040 commit 6168d39

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

repo_helper_github/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,10 @@ def compile_required_checks(repo: RepoHelper) -> Iterator[str]:
541541
else:
542542
continue
543543

544-
for version in set_gh_actions_versions(py_versions):
544+
for version, (_, _, meta) in actions_manager.get_gh_actions_matrix().items():
545+
if meta["experimental"]:
546+
continue
547+
545548
if platform == "Windows":
546549
if version in {"pypy-3.7", "pypy-3.9", "pypy-3.10"}:
547550
continue

0 commit comments

Comments
 (0)