Skip to content

Commit d4ef997

Browse files
authored
Merge pull request #11 from milsman2/tz_fix
Tz fix
2 parents 4517e21 + 6b44b1c commit d4ef997

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/github-actions-demo.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: GitHub Actions Demo
22
run-name: ${{ github.actor }} made a push.
3-
on: [push]
3+
on:
4+
schedule:
5+
- cron: '0 8 * * *'
6+
push:
47
jobs:
58
Explore-GitHub-Actions:
69
runs-on: ubuntu-latest

app/config/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88

99
class Settings(BaseSettings):
10-
TEST_URL: HttpUrl = "https://api.sunrisesunset.io/json?lat=29.7604&lng=-95.3698&timezone=UTC&date=today"
10+
TEST_URL: HttpUrl = "https://api.sunrisesunset.io/json?lat=29.7604&lng=-95.3698&timezone=America/Chicago&date=today"

0 commit comments

Comments
 (0)