Skip to content

Commit c3faf39

Browse files
authored
chore: kickoff release
2 parents 4184c64 + 4a796c4 commit c3faf39

File tree

53 files changed

+5226
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+5226
-212
lines changed

.github/workflows/integ_test_analytics.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
name: Integration Tests | Analytics
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
15+
watchos:
16+
description: '⌚️ watchOS'
17+
required: true
18+
default: true
19+
type: boolean
420
workflow_call:
521

622
permissions:
@@ -9,6 +25,7 @@ permissions:
925

1026
jobs:
1127
analytics-integration-test-iOS:
28+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1229
runs-on: macos-13
1330
environment: IntegrationTest
1431
steps:
@@ -36,6 +53,7 @@ jobs:
3653
xcode_path: '/Applications/Xcode_14.3.app'
3754

3855
analytics-integration-test-tvOS:
56+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3957
runs-on: macos-13
4058
environment: IntegrationTest
4159
steps:
@@ -64,6 +82,7 @@ jobs:
6482
xcode_path: '/Applications/Xcode_14.3.app'
6583

6684
analytics-integration-test-watchOS:
85+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.watchos }}
6786
runs-on: macos-13
6887
environment: IntegrationTest
6988
steps:

.github/workflows/integ_test_api_functional.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
name: Integration Tests | API - Functional
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
15+
watchos:
16+
description: '⌚️ watchOS'
17+
required: true
18+
default: true
19+
type: boolean
420
workflow_call:
521

622
permissions:
@@ -9,6 +25,7 @@ permissions:
925

1026
jobs:
1127
api-functional-test-iOS:
28+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1229
runs-on: macos-13
1330
environment: IntegrationTest
1431
steps:
@@ -36,6 +53,7 @@ jobs:
3653
xcode_path: '/Applications/Xcode_14.3.app'
3754

3855
api-functional-test-tvOS:
56+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3957
runs-on: macos-13
4058
environment: IntegrationTest
4159
steps:
@@ -64,6 +82,7 @@ jobs:
6482
xcode_path: '/Applications/Xcode_14.3.app'
6583

6684
api-functional-test-watchOS:
85+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.watchos }}
6786
runs-on: macos-13
6887
environment: IntegrationTest
6988
steps:

.github/workflows/integ_test_api_graphql_auth_directive.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
name: Integration Tests | API - GraphQL Auth Directive
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
415
workflow_call:
516

617
permissions:
@@ -9,6 +20,7 @@ permissions:
920

1021
jobs:
1122
api-graphql-auth-directive-test-iOS:
23+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1224
runs-on: macos-13
1325
environment: IntegrationTest
1426
steps:
@@ -36,6 +48,7 @@ jobs:
3648
xcode_path: '/Applications/Xcode_14.3.app'
3749

3850
api-graphql-auth-directive-test-tvOS:
51+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3952
runs-on: macos-13
4053
environment: IntegrationTest
4154
steps:

.github/workflows/integ_test_api_graphql_iam.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
name: Integration Tests | API - GraphQL IAM
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
415
workflow_call:
516

617
permissions:
@@ -9,6 +20,7 @@ permissions:
920

1021
jobs:
1122
api-graphql-iam-test-iOS:
23+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1224
runs-on: macos-13
1325
environment: IntegrationTest
1426
steps:
@@ -36,6 +48,7 @@ jobs:
3648
xcode_path: '/Applications/Xcode_14.3.app'
3749

3850
api-graphql-iam-test-tvOS:
51+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3952
runs-on: macos-13
4053
environment: IntegrationTest
4154
steps:

.github/workflows/integ_test_api_graphql_lambda_auth.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
name: Integration Tests | API - GraphQL Lambda
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
15+
watchos:
16+
description: '⌚️ watchOS'
17+
required: true
18+
default: true
19+
type: boolean
420
workflow_call:
521

622
permissions:
@@ -9,6 +25,7 @@ permissions:
925

1026
jobs:
1127
api-graphql-lambda-auth-test-iOS:
28+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1229
runs-on: macos-13
1330
environment: IntegrationTest
1431
steps:
@@ -36,6 +53,7 @@ jobs:
3653
xcode_path: '/Applications/Xcode_14.3.app'
3754

3855
api-graphql-lambda-auth-test-tvOS:
56+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3957
runs-on: macos-13
4058
environment: IntegrationTest
4159
steps:
@@ -64,6 +82,7 @@ jobs:
6482
xcode_path: '/Applications/Xcode_14.3.app'
6583

6684
api-graphql-lambda-auth-test-watchOS:
85+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.watchos }}
6786
runs-on: macos-13
6887
environment: IntegrationTest
6988
steps:

.github/workflows/integ_test_api_graphql_lazy_load.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
name: Integration Tests | API - GraphQL Lazy Load
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
415
workflow_call:
516

617
permissions:
@@ -9,6 +20,7 @@ permissions:
920

1021
jobs:
1122
api-lazy-load-test-iOS:
23+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1224
runs-on: macos-13
1325
environment: IntegrationTest
1426
steps:
@@ -36,6 +48,7 @@ jobs:
3648
xcode_path: '/Applications/Xcode_14.3.app'
3749

3850
api-lazy-load-test-tvOS:
51+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3952
runs-on: macos-13
4053
environment: IntegrationTest
4154
steps:

.github/workflows/integ_test_api_graphql_user_pool.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
name: Integration Tests | API - GraphQL User Pool
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
415
workflow_call:
516

617
permissions:
@@ -9,6 +20,7 @@ permissions:
920

1021
jobs:
1122
api-graphql-user-pool-test-iOS:
23+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1224
runs-on: macos-13
1325
environment: IntegrationTest
1426
steps:
@@ -36,6 +48,7 @@ jobs:
3648
xcode_path: '/Applications/Xcode_14.3.app'
3749

3850
api-graphql-user-pool-test-tvOS:
51+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3952
runs-on: macos-13
4053
environment: IntegrationTest
4154
steps:

.github/workflows/integ_test_api_rest_iam.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
name: Integration Tests | API - REST IAM
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
15+
watchos:
16+
description: '⌚️ watchOS'
17+
required: true
18+
default: true
19+
type: boolean
420
workflow_call:
521

622
permissions:
@@ -9,6 +25,7 @@ permissions:
925

1026
jobs:
1127
api-rest-iam-test-iOS:
28+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1229
runs-on: macos-13
1330
environment: IntegrationTest
1431
steps:
@@ -36,6 +53,7 @@ jobs:
3653
xcode_path: '/Applications/Xcode_14.3.app'
3754

3855
api-rest-iam-test-tvOS:
56+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3957
runs-on: macos-13
4058
environment: IntegrationTest
4159
steps:
@@ -64,6 +82,7 @@ jobs:
6482
xcode_path: '/Applications/Xcode_14.3.app'
6583

6684
api-rest-iam-test-watchOS:
85+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.watchos }}
6786
runs-on: macos-13
6887
environment: IntegrationTest
6988
steps:

.github/workflows/integ_test_api_rest_user_pool.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
name: Integration Tests | API - REST User Pool
22
on:
33
workflow_dispatch:
4+
inputs:
5+
ios:
6+
description: '📱 iOS'
7+
required: true
8+
default: true
9+
type: boolean
10+
tvos:
11+
description: '📺 tvOS'
12+
required: true
13+
default: true
14+
type: boolean
415
workflow_call:
516

617
permissions:
@@ -9,6 +20,7 @@ permissions:
920

1021
jobs:
1122
api-rest-user-pool-test-iOS:
23+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.ios }}
1224
runs-on: macos-13
1325
environment: IntegrationTest
1426
steps:
@@ -36,6 +48,7 @@ jobs:
3648
xcode_path: '/Applications/Xcode_14.3.app'
3749

3850
api-rest-user-pool-test-tvOS:
51+
if: ${{ github.event_name != 'workflow_dispatch' || inputs.tvos }}
3952
runs-on: macos-13
4053
environment: IntegrationTest
4154
steps:

0 commit comments

Comments
 (0)