INNER CODE UNIT · Python
open_issues
wolfSSL/wolfssl-examples · .github/scripts/ci_triage.py:473
def open_issues():
"""REST list, not Search: strongly consistent and returns bodies."""
out, page = [], 1
while True:
got = gh(
f"/repos/{REPO}/issues?labels={store.LABEL}&state=all"
f"&per_page=100&page={page}"
)
out += [i for i in got if "pull_request" not in i]
if len(got) < 100:
return out
page += 1
NIGHTLY_TARGETS = ("examples", "esp32", "android", "rt1060", "uefi", "puf",
"rpi-pico", "ebpf", "fullstack", "java", "cmake", "csharp",
"emulated")