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 45d64e3 commit 3490a89Copy full SHA for 3490a89
.github/workflows/check-devedition.yml
@@ -2,7 +2,7 @@ name: Check new devedition version
2
3
on:
4
schedule:
5
- - cron: "56 * * * *"
+ - cron: "18 * * * *"
6
env:
7
LATEST: ""
8
permissions:
modules/testrail_integration.py
@@ -98,7 +98,10 @@ def reportable(platform_to_test=None):
98
logging.warning(f"Got version from collect_executable.py! {version}")
99
tr_session = testrail_init()
100
major_number, second_half = version.split(".")
101
- minor_num, build_num = second_half.split("-")
+ if "-" in second_half:
102
+ minor_num, _ = second_half.split("-")
103
+ else:
104
+ minor_num = second_half
105
channel = os.environ.get("FX_CHANNEL").title()
106
if not channel:
107
if "b" in minor_num:
0 commit comments