From ab9fb2a2bfc9e06b398360c87c4819fe3e31c8b5 Mon Sep 17 00:00:00 2001 From: Natalie Schultz <90212258+nataliejschultz@users.noreply.github.com> Date: Thu, 11 Jul 2024 11:05:42 -0600 Subject: [PATCH] Overpass key rename Originally, the overpass key was named OVERPASS_API throughout the code. My final change in the original PR was to rename the key to GEOFABRIK_OVERPASS_KEY. However, when naming the secret in the server actions repo, I wrongfully told shankari to name it GEOFABRIK_OVERPASS_KEY, rather than the OVERPASS_API that is functional in my fork. Renaming the secret when it's pulled from the github repo should fix this issue. --- .github/workflows/test-overpass.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-overpass.yml b/.github/workflows/test-overpass.yml index 934075e4f..5f1297a61 100644 --- a/.github/workflows/test-overpass.yml +++ b/.github/workflows/test-overpass.yml @@ -21,7 +21,7 @@ jobs: # Runs TestOverpass.py to check for API functionality - name: Test Overpass env: - GEOFABRIK_OVERPASS_KEY: '${{ secrets.OVERPASS_API }}' + GEOFABRIK_OVERPASS_KEY: '${{ secrets.GEOFABRIK_OVERPASS_KEY }}' run: | echo Testing overpass! chmod +x emission/individual_tests/setup_and_test_overpass.sh