whogitit 1.0.0

Track AI-generated code at line-level granularity
Documentation
# Example workflow for using whogitit PR summaries
# Copy this file to your repository's .github/workflows/ directory
# and rename it to ai-attribution.yml

name: AI Attribution Summary

on:
  pull_request:
    types: [opened, synchronize, reopened]

permissions:
  contents: read
  pull-requests: write

jobs:
  ai-attribution:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - name: Fetch git notes
        run: git fetch origin refs/notes/whogitit:refs/notes/whogitit || true
        continue-on-error: true

      - name: AI Attribution Summary
        uses: dotsetlabs/whogitit/.github/actions/pr-summary@main
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}