You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/db-update-dev.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,11 @@ on:
16
16
required: false
17
17
default: false
18
18
type: boolean
19
+
INSTALL_MODE:
20
+
description: Which API version to install when run manually. "installed" = install the currently deployed API version; "latest" = install latest from main.
Copy file name to clipboardExpand all lines: .github/workflows/db-update-prod.yml
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,19 @@
2
2
name: Database Update - PROD
3
3
on:
4
4
workflow_dispatch:
5
+
inputs:
6
+
INSTALL_MODE:
7
+
description: Which API version to install when run manually. "installed" = install the currently deployed API version; "latest" = install latest from main.
8
+
required: false
9
+
default: installed
10
+
type: string
5
11
workflow_call:
12
+
inputs:
13
+
INSTALL_MODE:
14
+
description: Which API version to install when called as a reusable workflow (defaults to latest)
15
+
required: false
16
+
default: latest
17
+
type: string
6
18
repository_dispatch: # Update on mobility-database-catalog repo dispatch
Copy file name to clipboardExpand all lines: .github/workflows/db-update-qa.yml
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,18 @@ on:
8
8
required: false
9
9
default: false
10
10
type: boolean
11
+
INSTALL_MODE:
12
+
description: Which API version to install when run manually. "installed" = install the currently deployed API version; "latest" = install latest from main.
13
+
required: false
14
+
default: installed
15
+
type: string
11
16
workflow_call:
17
+
inputs:
18
+
INSTALL_MODE:
19
+
description: Which API version to install when called as a reusable workflow (defaults to latest)
20
+
required: false
21
+
default: latest
22
+
type: string
12
23
13
24
repository_dispatch: # Update on mobility-database-catalog repo dispatch
Copy file name to clipboardExpand all lines: .github/workflows/db-update.yml
+40-15Lines changed: 40 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,11 @@ on:
75
75
required: false
76
76
default: api.mobilitydatabase.org
77
77
type: string
78
+
INSTALL_MODE:
79
+
description: Which API version to install when run manually. "installed" = install the currently deployed API version; "latest" = install latest from main.
80
+
required: false
81
+
default: latest
82
+
type: string
78
83
DRY_RUN:
79
84
description: Skip applying schema and content updates
0 commit comments