Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/test-scripts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
path: 'head'

- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.sha }}
path: 'base'
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.sha }}
path: 'base'

- name: Cache Python venv
uses: actions/cache@v4
Expand All @@ -36,4 +35,4 @@ jobs:
source venv/bin/activate
pip install -r head/scripts/requirements.txt
cd head/scripts
python -m unittest test.common_test
python -m unittest test.common_test
4 changes: 2 additions & 2 deletions .github/workflows/upload-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
- name: "List bucket"
run: |
echo "uploading to ${{matrix.bucket}}"

- uses: actions/checkout@v4
- name: Checkout Code
uses: actions/checkout@v4
- name: 'Configure AWS Role'
uses: aws-actions/configure-aws-credentials@v4
with:
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/validate-issuers-periodic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@ name: "Validate on schedule"

on:
schedule:
- cron: '*/60 */4 * * *'
# Minute Hour DayOfMonth Month DayOfWeek - runs every 4 hours
# This only applies to whatever has been set as the main branch
# https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#schedule
- cron: '0 */4 * * *'

jobs:
runTests:
name: "Validate Issuers File"
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Checkout Code
uses: actions/checkout@v4
- name: Cache Python venv
uses: actions/cache@v4
with:
Expand All @@ -25,4 +26,4 @@ jobs:
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python validate_entries.py ../vci-issuers.json
python validate_entries.py ../vci-issuers.json
12 changes: 12 additions & 0 deletions vci-issuers-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -8164,6 +8164,18 @@
"country":"US"
}
]
},
{
"canonical_iss":"https://docket.care/mo",
"website":"https://health.mo.gov/living/wellness/immunizations",
"label":"Missouri",
"issuer_type":"governmental.state_province_territory",
"locations":[
{
"state":"MO",
"country":"US"
}
]
}
]
}
7 changes: 6 additions & 1 deletion vci-issuers.json
Original file line number Diff line number Diff line change
Expand Up @@ -3155,6 +3155,11 @@
"iss": "https://docket.care/dc",
"name": "District of Columbia",
"website": "https://dchealth.dc.gov/immunization"
}
},
{
"iss": "https://docket.care/mo",
"name": "Missouri",
"website": "https://health.mo.gov/living/wellness/immunizations"
}
]
}