Skip to content

Commit

Permalink
Run every 90 minutes instead of 60 (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb authored Jan 4, 2024
1 parent 2c2f6aa commit e03d70f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ on:
- main

schedule:
# Run hourly; will only do work if the last job succeeded
- cron: '0 * * * *'
# Run every 90 minutes; will only do work if the last job succeeded.
# This ensures that after rate limits are encountered, we attempt to publish again.
# PyPI has a 60 minute rate limit for project creation.
- cron: "*/90 * * * *"


permissions:
Expand Down

0 comments on commit e03d70f

Please sign in to comment.