Skip to content
check

GitHub Action

Approvals Counter

v1.1 Latest version

Approvals Counter

check

Approvals Counter

Count approvals of the provided PR

Installation

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

              

- name: Approvals Counter

uses: dayone-jp/[email protected]

Learn more about this action in dayone-jp/approvals

Choose a version

Approvals counter

This action counts the approvals of the PR

How to use

You can check that PR has required amount of approvals like this

name: 'Has two or more approvals'
description: 'Check that PR has two or more approvals'
outputs:
  approved:
    description: 'If PR has two or more approvals'
    value: ${{steps.approvals.outputs.approvals >= 2}}
runs:
  using: 'composite'
  steps:
    - uses: dayone-jp/approvals@v1
      id: approvals
      env:
        GITHUB_TOKEN: ${{ YOUR_TOKEN_HERE }}