10000 Top Ranking Issues by kurt-rhee · Pull Request #2267 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Top Ranking Issues #2267

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Oct 19, 2024
Prev Previous commit
Next Next commit
Create top-ranked-issues.yml
  • Loading branch information
AdamRJensen committed Oct 19, 2024
commit 66685b134df1ff98f51f207c6e9afeec8deb18e5
33 changes: 33 additions & 0 deletions .github/workflows/top-ranked-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Update Top Ranked Issues

on:
# For testing purposes (can be removed later)
pull_request:
schedule:
# Runs every day at 3:00 AM UTC
- cron: '0 3 * * *'

jobs:
run-script:
runs-on: ubuntu-latest

env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Check out the repository
uses: actions/checkout@v4 # This ensures the repository code is available

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install PyGithub

- name: Run update_top_ranking_issues.py
run: |
python ./scripts/update_top_ranking_issues.py
Loading
0