From 446ea089381fbd6e8874e5f69cef118fe3c8eaa9 Mon Sep 17 00:00:00 2001 From: Shreyas Rao Date: Fri, 6 Feb 2026 11:26:17 +0530 Subject: [PATCH] Add GHA workflow `PR Review Timeline` --- .github/workflows/pr-review-timeline.yaml | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/pr-review-timeline.yaml diff --git a/.github/workflows/pr-review-timeline.yaml b/.github/workflows/pr-review-timeline.yaml new file mode 100644 index 00000000..a4782033 --- /dev/null +++ b/.github/workflows/pr-review-timeline.yaml @@ -0,0 +1,26 @@ +name: PR Review Timeline + +on: + pull_request: + types: [opened, closed, reopened, ready_for_review, review_requested, assigned, synchronize] + pull_request_review: + types: [submitted, edited, dismissed] + +jobs: + pr-review-timeline: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: read + steps: + - name: PR Review Timeline + uses: shreyas-s-rao/pr-review-timeline@v0.2.1 + id: timeline + - name: Output Timeline JSON + run: | + echo "${{ steps.timeline.outputs.timeline-json }}" > pr_review_timeline.json + - name: Upload Timeline Artifact + uses: actions/upload-artifact@v4 + with: + name: pr-review-timeline + path: pr_review_timeline.json