#!/usr/bin/env bun /** * Agent Blame - Transfer Notes Action * * Transfers git notes from PR commits to merge/squash/rebase commits. * Runs as part of GitHub Actions workflow after PR merge. * * Environment variables (set by GitHub Actions): * PR_NUMBER - The PR number * PR_TITLE - The PR title * BASE_REF - Target branch (e.g., main) * BASE_SHA - Base commit SHA before merge * HEAD_SHA - Last commit SHA on feature branch * MERGE_SHA - The merge commit SHA (for merge/squash) * MERGED_AT - The PR merge timestamp (ISO 8601) */ /** * Main entry point - exported for CLI */ export declare function runPostMerge(): Promise;