Skip to content

Commit 921b661

Browse files
Add workflow_dispatch trigger to enable manual dispatch of workflows.
This change adds the `workflow_dispatch` trigger to the following workflow files: - .github/workflows/abtesting.yml - .github/workflows/analytics.yml - .github/workflows/appdistribution.yml - .github/workflows/archiving.yml - .github/workflows/auth.yml - .github/workflows/check.yml - .github/workflows/client_app.yml - .github/workflows/cocoapods-integration.yml - .github/workflows/combine.yml - .github/workflows/core.yml - .github/workflows/core_extension.yml - .github/workflows/core_internal.yml - .github/workflows/crashlytics.yml This allows these workflows to be manually triggered in addition to their existing triggers.
1 parent b91f255 commit 921b661

13 files changed

+13
-0
lines changed

.github/workflows/abtesting.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: abtesting
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'FirebaseABTesting**'

.github/workflows/analytics.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: analytics
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'FirebaseAnalytics**'

.github/workflows/appdistribution.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: appdistribution
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'FirebaseAppDistribution**'

.github/workflows/archiving.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: archiving
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- '.github/workflows/archiving.yml'

.github/workflows/auth.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: auth
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'FirebaseAuth**'

.github/workflows/check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: check
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths-ignore:
67
- 'Firestore/**'

.github/workflows/client_app.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: client_app
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- ".github/workflows/client_app.yml"

.github/workflows/cocoapods-integration.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: cocoapods-integration
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'IntegrationTesting/CocoapodsIntegrationTest/**'

.github/workflows/combine.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
name: combine
1616

1717
on:
18+
workflow_dispatch:
1819
pull_request:
1920
paths:
2021
# Combine sources

.github/workflows/core.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: core
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'FirebaseCore**'

.github/workflows/core_extension.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: core_extension
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'FirebaseCoreExtension.podspec'

.github/workflows/core_internal.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: core_internal
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'FirebaseCoreInternal.podspec'

.github/workflows/crashlytics.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: crashlytics
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
paths:
67
- 'Crashlytics**'

0 commit comments

Comments
 (0)