From b845330fa1533d5fec87bbb89a137581545b8138 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Aydin?= Date: Fri, 20 Mar 2026 11:10:09 +0100 Subject: [PATCH] Add PR feed workflow PRs in this repo don't get posted to the PR feed when review is requested, making it harder for reviewers to discover them. Adds the same reusable workflow that the main intercom monolith uses. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/post-to-pr-feed.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/post-to-pr-feed.yml diff --git a/.github/workflows/post-to-pr-feed.yml b/.github/workflows/post-to-pr-feed.yml new file mode 100644 index 0000000..5e18f9d --- /dev/null +++ b/.github/workflows/post-to-pr-feed.yml @@ -0,0 +1,11 @@ +name: Post to PR feed + +on: + pull_request: + types: + - review_requested + +jobs: + call-pr-feed-workflow: + uses: intercom/github-action-workflows/.github/workflows/post-to-pr-feed.yml@main + secrets: inherit