From 030c57ad3fe58cca83b1ae3d3285621958fb8df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Aydin?= Date: Fri, 20 Mar 2026 10:48:57 +0100 Subject: [PATCH] Add AI PR labeling workflow for Claude Code tracking References the shared reusable workflow from intercom/github-action-workflows to automatically label PRs authored with Claude Code. This closes a gap in DX adoption tracking for contributions to this repo. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/label-ai-generated-prs.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/label-ai-generated-prs.yml diff --git a/.github/workflows/label-ai-generated-prs.yml b/.github/workflows/label-ai-generated-prs.yml new file mode 100644 index 0000000..14f9e8f --- /dev/null +++ b/.github/workflows/label-ai-generated-prs.yml @@ -0,0 +1,11 @@ +# .github/workflows/label-ai-generated-prs.yml +name: Label AI-generated PRs + +on: + pull_request: + types: [opened, edited, synchronize] # run when the body changes too + +jobs: + call-label-ai-prs: + uses: intercom/github-action-workflows/.github/workflows/label-ai-prs.yml@main + secrets: inherit