Skip to content

foxglove/actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Foxglove GitHub Actions

Shared GitHub Actions workflows and prompts for the Foxglove organization.

PR Review Workflow

Review (review.yml)

An AI-powered PR review that combines technical and product perspectives in a single pass. Acts as a CTO who is both a technical leader and product steward — evaluating code quality, architecture, performance, and security alongside user-facing consistency, terminology, documentation, and UX.

Prompt: prompts/review.md

Usage

Add this workflow to your repository's .github/workflows/ directory:

# .github/workflows/pr-review.yml
name: PR Review

on:
  pull_request: {}

jobs:
  review:
    if: ${{ !github.event.pull_request.head.repo.fork }}
    permissions:
      actions: read
      contents: read
      pull-requests: write
      id-token: write
    uses: foxglove/actions/.github/workflows/review.yml@main
    secrets:
      ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

Note: If your repository restricts the default GITHUB_TOKEN permissions, you may also need to add a top-level permissions block to explicitly grant the required access at the workflow level.

permissions:
  actions: read
  contents: read
  pull-requests: write
  id-token: write

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors