Skip to content

Commit

Permalink
Restrict iOS workflow to v128.
Browse files Browse the repository at this point in the history
  • Loading branch information
b4handjr committed Aug 6, 2024
1 parent 1fa444d commit 7b604ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ios_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ on:
required: true
type: string
firefox-version:
description: 'The Firefox Version you want to test'
default: "['123']"
description: 'The Firefox Version you want to test. v128 is the minimum.'
default: "['128']"
required: false
type: string
feature-name:
Expand Down
2 changes: 1 addition & 1 deletion utilities/check_experimenter_and_start_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def get_firefox_verions(app_name, channel, min_version):
if not test_versions: # if the version doesn't exist in whattrainisitnow just return it
return [f"{Version(min_version)}"]
else:
return [f"{_}" for _ in test_versions]
return [f"{_}" for _ in test_versions if _ >= 128]
else:
match channel:
case "release":
Expand Down

0 comments on commit 7b604ad

Please sign in to comment.