Skip to content

Commit a972151

Browse files
author
github-actions
committed
[CI] Add changes
1 parent d7c4a4c commit a972151

File tree

1 file changed

+2
-31
lines changed

1 file changed

+2
-31
lines changed

dist/index.js

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -32667,41 +32667,12 @@ function parseTags(tags) {
3266732667
function parseAndroidDevice(device) {
3266832668
if (device === undefined || device === '')
3266932669
return null;
32670-
if ([
32671-
'pixel-6',
32672-
'pixel-6a',
32673-
'pixel-6-pro',
32674-
'pixel-7',
32675-
'pixel-7-pro',
32676-
'generic-tablet',
32677-
].includes(device)) {
32678-
return device;
32679-
}
32680-
throw new Error(`Invalid android device: ${device}`);
32670+
return device;
3268132671
}
3268232672
function parseIOSDevice(device) {
3268332673
if (device === undefined || device === '')
3268432674
return null;
32685-
if ([
32686-
'iphone-12',
32687-
'iphone-12-mini',
32688-
'iphone-12-pro-max',
32689-
'iphone-13',
32690-
'iphone-13-mini',
32691-
'iphone-13-pro-max',
32692-
'iphone-14',
32693-
'iphone-14-plus',
32694-
'iphone-14-pro',
32695-
'iphone-14-pro-max',
32696-
'iphone-15',
32697-
'iphone-15-plus',
32698-
'iphone-15-pro',
32699-
'iphone-15-pro-max',
32700-
'ipad-pro-6th-gen',
32701-
].includes(device)) {
32702-
return device;
32703-
}
32704-
throw new Error(`Invalid ios device: ${device}`);
32675+
return device;
3270532676
}
3270632677
function getPullRequestTitle() {
3270732678
var _a;

0 commit comments

Comments
 (0)