Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GITHUB/WORKFLOWS: Add workflow for auto-assigning reviewers based on git blame #10301

Closed
Closed
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
39 changes: 39 additions & 0 deletions .github/workflows/auto-assign-reviewers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Auto-Assign Reviewers

on:
pull_request:
types: [opened, synchronize]

jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Fetch base branch
run: |
git fetch origin ${{ github.event.pull_request.base.ref }}
- name: Run git blame analysis
run: |
# Calculate the diff between the base branch and the current commit
git diff origin/${{ github.event.pull_request.base.ref }} --name-only | while read file; do
echo "Analyzing $file"
git blame -e $file || echo "Error analyzing $file"
done > reviewers.txt

- name: Print reviewers list
run: cat reviewers.txt

- name: Create pull request for changes
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: ${{ github.event.pull_request.base.ref }}
branch: create-pull-request/patch
commit-message: "[create-pull-request] Automated change"
title: Changes by create-pull-request action
body: |
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
Loading