Skip to content

Commit df788f6

Browse files
authored
Merge branch 'main' into review-github-parameters
2 parents 9d90c52 + f5fcbb6 commit df788f6

22 files changed

+484
-395
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
env:
104104
WIN_INSTALLER_LINK: ${{ inputs.win_installer_link }}
105105
run: |
106-
echo "STARFOX_SPLIT=ci-extended" | Out-File -FilePath .env -Encoding utf8 -Append -Force
106+
echo "STARFOX_SPLIT=smoke" | Out-File -FilePath .env -Encoding utf8 -Append -Force
107107
Invoke-WebRequest -Uri $WIN_INSTALLER_LINK -OutFile "${{ github.workspace }}\setup.exe"
108108
New-Item -ItemType Directory -Path "C:\Program Files\Custom Firefox" -Force
109109
shell: pwsh
@@ -182,7 +182,7 @@ jobs:
182182
if: ${{ inputs.mac_installer_link }}
183183
run: |
184184
echo "MANUAL='true'" >> "$GITHUB_ENV";
185-
echo "STARFOX_SPLIT=ci-extended" >> .env
185+
echo "STARFOX_SPLIT=smoke" >> .env
186186
echo "Running smoke tests on supplied executable";
187187
- name: Install dependencies
188188
run: |
@@ -246,7 +246,7 @@ jobs:
246246
MANUAL_DOWNLOAD_LINK: ${{ inputs.linux_tarball_link }}
247247
run: |
248248
echo "MANUAL='true'" >> "$GITHUB_ENV";
249-
echo "STARFOX_SPLIT=ci-extended" >> "$GITHUB_ENV"
249+
echo "STARFOX_SPLIT=smoke" >> "$GITHUB_ENV"
250250
echo "Running smoke tests on supplied executable";
251251
sudo apt install gnome-screenshot
252252
uname -m;

SELECTOR_INFO.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1923,6 +1923,20 @@ Location: Context menu - Tab
19231923
Path to .json: modules/data/context_menu.components.json
19241924
```
19251925
```
1926+
Selector Name: context-menu-move-tab-to-end
1927+
Selector Data: menuitem[data-l10n-id='move-to-end']
1928+
Description: Context menu option to move a tab to the end of the tab bar.
1929+
Location: Context menu - Tab
1930+
Path to .json: modules/data/context_menu.components.json
1931+
```
1932+
```
1933+
Selector Name: context-menu-move-to-new-window
1934+
Selector Data: menuitem[data-l10n-id='move-to-new-window']
1935+
Description: Context menu option to move a tab to a new window.
1936+
Location: Context menu - Tab
1937+
Path to .json: modules/data/context_menu.components.json
1938+
```
1939+
```
19261940
Selector Name: context-menu-bookmark-link
19271941
Selector Data: context-bookmarklink
19281942
Description: Context menu option to bookmark a link
@@ -1934,7 +1948,6 @@ Selector Name: context-menu-search-select
19341948
Selector Data: coontext-searchselect
19351949
Description: Context menu option to search selected text with the engine set as default
19361950
Location: Context menu - topsite context menu
1937-
Path to .json: modules/data/context_menu.components.json
19381951
```
19391952
```
19401953
Selector Name: context-menu-open-link-in-new_container_tab
@@ -3305,14 +3318,14 @@ Path to .json: modules/data/navigation.components.json
33053318
Selector Name: selected_searchbar-search-engine
33063319
Selector Data: button.searchbar-engine-one-off-item[tooltiptext='{engine}'][selected]
33073320
Description: Searchbar-search-engine
3308-
Location: Selected search bar search engine
3321+
Location: Selected search bar search engine
33093322
Path to .json: modules/data/navigation.components.json
33103323
```
33113324
```
33123325
Selector Name: searchbar-suggestions
33133326
Selector Data: hbox.search-one-offs
33143327
Description: Searchbar suggestions
3315-
Location: Searchbar results
3328+
Location: Searchbar results
33163329
Path to .json: modules/data/navigation.components.json
33173330
```
33183331
```

choose_ci_set.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,7 @@ def dedupe(run_list: list) -> list:
214214
fh.write("\n".join(ci_paths))
215215
sys.exit(0)
216216

217-
if len(run_list) < MIN_RUN_SIZE:
218-
run_list.extend(ci_paths)
217+
run_list.extend(ci_paths)
219218

220219
# Dedupe just in case
221220
if SLASH == "\\":

0 commit comments

Comments
 (0)