Skip to content

Commit

Permalink
Fixed bug where the YAML scripts would not run.
Browse files Browse the repository at this point in the history
  • Loading branch information
armstjc committed Feb 1, 2024
1 parent dbae0ff commit 6ff658b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Update Statsbomb Data - CSV
on:
schedule:
- cron: "59 7 * * 0"
- cron: "59 7 * * *"
#- cron: "0 0 30 12 1"
# push:
# branches: [main]
push:
branches: [main]
pull_request:
branches: [main]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Update Statsbomb Data - Parquet
on:
schedule:
- cron: "59 7 * * 0"
- cron: "59 7 * * *"
#- cron: "0 0 30 12 1"
# push:
# branches: [main]
push:
branches: [main]
pull_request:
branches: [main]

Expand Down
2 changes: 1 addition & 1 deletion parse_statsbomb_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def get_statsbomb_tracking_data(season: int):

if __name__ == "__main__":
print("starting up")
for i in range(2019, 2024):
for i in range(2018, 2024):
get_statsbomb_tracking_data(i)

# get_statsbomb_tracking_data(2019)

0 comments on commit 6ff658b

Please sign in to comment.