Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/preserve-ai-authorship-caller.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Caller workflow for git-ai authorship preservation.
# This workflow calls the centralized preserve-ai-authorship workflow in
# codefresh-io/shared-github-workflows repo, which migrates git-ai authorship notes from
# original branch commits onto the new commits created by GitHub's
# squash/rebase merge - so AI attribution is preserved after merging PRs.

name: Preserve AI Authorship

on:
push:
branches:
- main
- master

permissions:
contents: write
pull-requests: read

jobs:
preserve-authorship:
uses: codefresh-io/shared-github-workflows/.github/workflows/preserve-ai-authorship.yaml@main
Loading