Skip to content

Commit

Permalink
trigger run
Browse files Browse the repository at this point in the history
  • Loading branch information
stahanna committed Jan 21, 2025
1 parent d0ce2a9 commit b114ae6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_meeting_reports.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name : create meeting report
#on:
# schedule:
# - cron: '*/40 7 * * 2' # Test. In general, create at 8 am on Friday (0 7 * * 5)
# - cron: '*/40 7 * * 2' # Test. In general, create at 8 am on Friday (0 7 * * 5)
on:
push:
branches:
Expand Down
20 changes: 10 additions & 10 deletions scripts/create_dev_meetings_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@


import os
from dotenv import load_dotenv

# Load .env file
load_dotenv()

token = os.getenv("SECRET_GITHUB_TOKEN")
if not token:
raise EnvironmentError("SECRET_GITHUB_TOKEN environment variable is not set or could not be found.")

print("Token successfully loaded.")
# from dotenv import load_dotenv
#
# # Load .env file
# load_dotenv()
#
# token = os.getenv("SECRET_GITHUB_TOKEN")
# if not token:
# raise EnvironmentError("SECRET_GITHUB_TOKEN environment variable is not set or could not be found.")
#
# print("Token successfully loaded.")

from datetime import datetime, timedelta
import pytz
Expand Down

0 comments on commit b114ae6

Please sign in to comment.