Skip to content

Commit d4fccf8

Browse files
committed
Change Cron job to every 10 minutes
1 parent 0cc31a3 commit d4fccf8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/top-ranked-issues.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ on:
44
# For testing purposes (can be removed later)
55
pull_request:
66
schedule:
7-
# Runs every day at 3:00 AM UTC
8-
- cron: '0 3 * * *'
7+
# # Runs every day at 3:00 AM UTC
8+
# - cron: '0 3 * * *'
9+
- cron: */10 * * * *
10+
11+
permissions:
12+
issues: write # This grants permission to create, update, and manage issues
913

1014
jobs:
1115
run-script:

0 commit comments

Comments
 (0)