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 b114ae6 commit 0040deb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_meeting_reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/checkout@v2
- name: get github repository
env:
SUPER_SECRET: ${{ secrets.SECRET_GITHUB_TOKEN }}
SUPER_SECRET: ${{ secrets.SECRET2 }}
run: |
python -m pip install --upgrade setuptools wheel
python -m pip install numpy==1.24.2
Expand Down
6 changes: 3 additions & 3 deletions scripts/create_dev_meetings_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# # Load .env file
# load_dotenv()
#
# token = os.getenv("SECRET_GITHUB_TOKEN")
# token = os.getenv("SECRET2")
# if not token:
# raise EnvironmentError("SECRET_GITHUB_TOKEN environment variable is not set or could not be found.")
# raise EnvironmentError("SECRET2 environment variable is not set or could not be found.")
#
# print("Token successfully loaded.")

Expand All @@ -40,7 +40,7 @@

# ***************** connecting to the repository of gammapy with token ***************

token = os.environ["SECRET_GITHUB_TOKEN"]
token = os.environ["SECRET2"]
gh = Github(token, per_page=200)
repo_gammapy = gh.get_repo("gammapy/gammapy")

Expand Down

0 comments on commit 0040deb

Please sign in to comment.