-
Notifications
You must be signed in to change notification settings - Fork 0
feat(automation): run psychometrics-commons hourly NVIDIA NIM review repair #1092
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6bb0d99
acf3162
cebc2c1
766b92d
949c737
82e2fae
6c330db
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| name: psychometrics-commons Hourly Review Repair | ||
|
|
||
| on: | ||
| schedule: | ||
| # Minute 9 avoids pg-llm-batch (1), aFIPC (2), kaefa (3), LineageWeave (4), | ||
| # codec-carver (5), life-os (6), Wardnet (7), mightyETL (8), naruon (11), | ||
| # pg-erd-cloud (13), orchestrator (17), noema (19), Clearfolio (23), | ||
| # Keyverse (29), Scopeweave (31), DiskSage (37), Appguardrail (41), | ||
| # newsdom-api (43), Inkspan (47), fast-mlsirm (49), BandScope (53), | ||
| # and semantic-data-portal (59). | ||
| - cron: "9 * * * *" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📝 Info: Minute 9 cron slot is unique across all callers The new caller uses Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
| concurrency: | ||
| group: psychometrics-commons-hourly-review-repair | ||
| # A later heartbeat must not cancel an in-flight measurement or consent RCA. | ||
| cancel-in-progress: false | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| dispatch-review-repair: | ||
| permissions: | ||
| contents: read | ||
| id-token: write | ||
| uses: ./.github/workflows/pr-review-fix-scheduler.yml | ||
| with: | ||
| target_repository: ContextualWisdomLab/psychometrics-commons | ||
| base_branch: main | ||
| max_prs: "50" | ||
| max_dispatches: "1" | ||
| retry_hours: "2" | ||
| secrets: | ||
| PR_REVIEW_MERGE_TOKEN: ${{ secrets.PR_REVIEW_MERGE_TOKEN }} | ||
| OPENCODE_APPROVE_TOKEN: ${{ secrets.OPENCODE_APPROVE_TOKEN }} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 Info: Schedule comment omits OriginWeave (minute 10)
The scheduling comment in psychometrics-commons-hourly-review-repair.yml jumps from
mightyETL (8)directly tonaruon (11), omittingOriginWeave (10). Sibling callers list OriginWeave at minute 10 (e.g.nonnest2-hourly-review-repair.yml:7readspsychometrics-commons (9), OriginWeave (10), naruon (11)). This is a purely cosmetic documentation inconsistency with no functional impact — minute 9 does not collide with minute 10 — but the reservation table is now inconsistent across callers.Was this helpful? React with 👍 or 👎 to provide feedback.