aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/approved-prs.yml
blob: 309a9217e42d31eddbdd65df3eb14dd336e3474b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: "Prompt reviewers to merge PRs on behalf of authors"

permissions:
  contents: read

on:
  pull_request_review:
    types:
      - submitted

jobs:
  merge-on-behalf-information-comment:
    runs-on: ubuntu-latest
    permissions:
      pull-requests: write
    if: >-
      (github.repository == 'llvm/llvm-project') &&
      (github.event.review.state == 'APPROVED')
    steps:
      - name: Checkout Automation Script
        uses: actions/checkout@v4
        with:
          sparse-checkout: llvm/utils/git/
          ref: main

      - name: Setup Automation Script
        working-directory: ./llvm/utils/git/
        run: |
          pip install -r requirements.txt

      - name: Add Merge On Behalf Comment
        working-directory: ./llvm/utils/git/
        run: |
          python3 ./github-automation.py \
            --token '${{ secrets.GITHUB_TOKEN }}' \
            pr-merge-on-behalf-information \
            --issue-number "${{ github.event.pull_request.number }}" \
            --author "${{ github.event.pull_request.user.login }}" \
            --reviewer "${{ github.event.review.user.login }}"