GitHub Actions has a useful feature to trigger workflows on a cron schedule. For example: name:Teston:push:pull_request:schedule:- cron:"0 6 * * *"# daily at 6amjobs:test:runs-on:ubuntu-lateststeps:- uses:actions/checkout@v3 But if a contributor has enabled GitHub Actions on their fork (which I recommend: test your contributions before opening a PR), it also runs the cron on their fork. This not only uses up extra CI resources on the fork: It also sends a regular email to the contributor when...