We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c52e600 commit 2816ed1Copy full SHA for 2816ed1
1 file changed
.github/workflows/top-ranked-issues.yml
@@ -1,17 +1,17 @@
1
name: Update Top Ranked Issues
2
3
on:
4
- # For testing purposes (can be removed later)
5
- pull_request:
6
schedule:
7
- # # Runs every day at 3:00 AM UTC
8
- # - cron: '0 3 * * *'
9
- - cron: '*/10 * * * *'
+ # Runs every day at 00:00 AM UTC
+ - cron: '0 0 * * *'
10
11
jobs:
12
run-script:
13
runs-on: ubuntu-latest
14
+ # Run only if the repository is pvlib/pvlib-python
+ if: ${{ github.repository == 'pvlib/pvlib-python' }}
+
15
env:
16
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
0 commit comments