Skip to content
tag

GitHub Action

Label approved pull requests

v1.0.7 Latest version

Label approved pull requests

tag

Label approved pull requests

Auto-label pull requests that have a specified number of approvals

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Label approved pull requests

uses: abinoda/[email protected]

Learn more about this action in abinoda/label-when-approved-action

Choose a version

Label approved pull requests

This GitHub Action applies a label of your choice to pull requests that reach a specified number of approvals. For teams using Pull Reminders, this action can be used to exclude approved pull requests from reminders.

Usage

This Action subscribes to Pull request review events which fire whenever pull requests are approved. The action requires two environment variables – the label name to add and the number of required approvals. Optionally you can provide a label name to remove.

on: pull_request_review
name: Label approved pull requests
jobs:
  labelWhenApproved:
    name: Label when approved
    runs-on: ubuntu-latest
    steps:
    - name: Label when approved
      uses: pullreminders/label-when-approved-action@master
      env:
        APPROVALS: "2"
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        ADD_LABEL: "approved"
        REMOVE_LABEL: "awaiting%20review"

Demo

License

The Dockerfile and associated scripts and documentation in this project are released under the MIT License.