diff --git a/.github/workflows/test-scripts.yaml b/.github/workflows/test-scripts.yaml index 6d6cb4ed..bf6cc76c 100644 --- a/.github/workflows/test-scripts.yaml +++ b/.github/workflows/test-scripts.yaml @@ -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 @@ -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 \ No newline at end of file + python -m unittest test.common_test diff --git a/.github/workflows/upload-snapshot.yaml b/.github/workflows/upload-snapshot.yaml index a81ad197..667c3549 100644 --- a/.github/workflows/upload-snapshot.yaml +++ b/.github/workflows/upload-snapshot.yaml @@ -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: diff --git a/.github/workflows/validate-issuers-periodic.yaml b/.github/workflows/validate-issuers-periodic.yaml index db31eb41..d57fceca 100644 --- a/.github/workflows/validate-issuers-periodic.yaml +++ b/.github/workflows/validate-issuers-periodic.yaml @@ -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: @@ -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 \ No newline at end of file + python validate_entries.py ../vci-issuers.json diff --git a/vci-issuers-metadata.json b/vci-issuers-metadata.json index b4d8e6dc..8b3c5083 100644 --- a/vci-issuers-metadata.json +++ b/vci-issuers-metadata.json @@ -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" + } + ] } ] } diff --git a/vci-issuers.json b/vci-issuers.json index 8144fd1e..15a7409d 100644 --- a/vci-issuers.json +++ b/vci-issuers.json @@ -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" + } ] }