Skip to content

Commit 1790535

Browse files
committed
feat: change research bot to daily updates
- Update cron schedule from weekly to daily (09:00 UTC) - Reduce lookback window from 14 to 7 days (more appropriate for daily) - Update documentation to reflect daily schedule This ensures more timely discovery of new papers with daily checks.
1 parent 410119a commit 1790535

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/research-bot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Research Bot
22

33
on:
44
schedule:
5-
- cron: '0 9 * * 1' # Every Monday 09:00 UTC
5+
- cron: '0 9 * * *' # Daily at 09:00 UTC
66
workflow_dispatch:
77

88
permissions:
@@ -45,7 +45,7 @@ jobs:
4545
body: |
4646
This automated PR updates the Latest Research section with newly published arXiv papers related to Isaac Gym / Isaac Lab.
4747
48-
- Created by Research Bot on a schedule or manual dispatch.
48+
- Created by Research Bot (runs daily at 09:00 UTC)
4949
- Marked as draft and requires maintainer approval to merge.
5050
- Content between markers is managed automatically:
5151
`<!-- research-bot:start -->` … `<!-- research-bot:end -->`.

.research-bot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ queries:
99
- "\"isaac lab\""
1010
- "\"omni isaac\""
1111

12-
# Look back this many days for new papers
13-
days_back: 14
12+
# Look back this many days for new papers (daily check)
13+
days_back: 7
1414

1515
# Max results fetched per query from arXiv API
1616
max_results: 25

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -368,10 +368,10 @@ Comprehensive tutorial series from RSS 2021 Workshop:
368368

369369
## 🤖 Automated Research Updates
370370

371-
- Source: arXiv queries for isaac gym”, “omni isaac, and isaac lab.
372-
- Schedule: weekly (Mon 09:00 UTC) or manual via Actions Research Bot.
373-
- Output: updates content between the research-bot:start and research-bot:end markers in this README.
374-
- Safety: opens a Draft PR labeled needs-approval; nothing merges automatically.
371+
- Source: arXiv queries for "isaac gym", "omni isaac", and "isaac lab".
372+
- Schedule: **Daily at 09:00 UTC** or manual via Actions "Research Bot".
373+
- Output: updates content between the 'research-bot:start' and 'research-bot:end' markers in this README.
374+
- Safety: opens a Draft PR labeled "needs-approval"; nothing merges automatically.
375375
- Config: edit `.research-bot.yaml` to adjust queries and limits.
376376

377377
## 🌟 Contributing

0 commit comments

Comments
 (0)