-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (47 loc) · 1.31 KB
/
testManualInputs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Test manual inputs
on:
push:
inputs:
compile_region:
type: boolean
description: Update main data
update_region:
type: boolean
description: Update sysdata.rda
update_sv:
type: boolean
description: Update SV data
update_svProps:
type: boolean
description: Update SV proportions
update_svFormats:
type: boolean
description: Update SV formatting table
update_svPop:
type: boolean
description: Update SV population projections
update_svImpacts:
type: boolean
description: Update SV impact list
svSectors:
type: choice
description: Which SV impact sectors to update
options:
- Air Quality - Childhood Asthma
- Air Quality - Premature Mortality
- Labor
- Extreme Temperature
- Roads
- High Tide Flooding and Traffic
- Coastal Properties
jobs:
greet:
runs-on: ubuntu-latest
steps:
- name: Check main data
if: github.event.inputs.compile_region
run: echo "Compiling main FrEDI data..."
- name: Check main data
if: |
github.event.inputs.compile_region && github.event.inputs.update_region
run: echo "Updating main FrEDI data..."