GitHub Integration
Telesis integrates with GitHub for work intake, PR-level code review, and issue lifecycle management. All GitHub features require GITHUB_TOKEN to be set.
Work Intake from GitHub
Import open issues as work items:
| |
This fetches issues from the repository configured in .telesis/config.yml (project.repo). Telesis deduplicates against existing work items, so repeated imports are safe.
Filter what gets imported:
| |
PR Code Review Comments
Post review findings as inline PR comments:
| |
This posts each finding as a line-level comment on the current PR. Comments include the severity, category, description, and suggestion. Finding IDs are embedded as HTML comment markers for correlation with local data.
The posting is idempotent — running it multiple times won’t create duplicate comments. Telesis checks for existing comments with matching finding ID markers.
Drift as PR Comments
Post drift findings to a PR:
| |
Like review comments, this is idempotent.
Dismissal Sync
Telesis bridges the gap between local review triage and GitHub PR conversations.
Importing Dismissals from GitHub
| |
This reads the PR’s review threads and imports dismissal signals. When a reviewer resolves a thread, replies with an acknowledgment, or otherwise indicates a finding has been addressed, Telesis converts that into a local dismissal.
The matching uses fuzzy similarity — finding IDs embedded in comments provide exact correlation, and for comments without markers, Telesis uses word-bag similarity to match GitHub thread context to local findings.
Posting Dismissal Replies to GitHub
| |
When you dismiss findings locally (telesis review dismiss), this command posts replies to the corresponding GitHub PR threads, letting other reviewers know the finding has been triaged. Only unsynced dismissals are posted — it’s safe to run repeatedly.
PR Creation
When using the full pipeline (telesis run), Telesis can create a PR automatically:
| |
The PR is created after pushing the branch. The title and description are generated from the work item and plan.
Issue Closure
When using the full pipeline, Telesis can close the source GitHub issue:
| |
The issue is closed with a comment linking to the created PR.
GitHub Token Scopes
The GITHUB_TOKEN needs these scopes:
repo— for reading issues, creating PRs, posting commentsworkflow— only if your repository uses GitHub Actions and you need to push workflow files (note: this requires SSH remotes, not HTTPS)
The Review-PR Workflow
A typical workflow combining local review with GitHub PR conversations:
| |