From 19cf6ff375d6fb142d10cf86b718204713b16a77 Mon Sep 17 00:00:00 2001 From: Michal Shalev Date: Fri, 15 Nov 2024 10:11:19 +0200 Subject: [PATCH] GITHUB/WORKFLOWS: Add workflow for auto-assigning reviewers based on git blame --- .github/workflows/auto-assign-reviewers.yml | 39 +++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/auto-assign-reviewers.yml diff --git a/.github/workflows/auto-assign-reviewers.yml b/.github/workflows/auto-assign-reviewers.yml new file mode 100644 index 00000000000..3405ecf2f9c --- /dev/null +++ b/.github/workflows/auto-assign-reviewers.yml @@ -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 \ No newline at end of file