Skip to content

Waiting For Review Labeler

Actions

About

Add label to a pull request after it being opened or ready for review for more than certain hours
v0.1.0
LatestPre-release
Star (3)

Waiting For Review Labeler

An action for adding label to a pull request after it being opened or ready for review for more than certain hours.

▶️ Usage

Create workflow

Create the waiting-for-review-labeler.yml file in the .github/workflows directory.

name: Waiting For Review Labeler

on:
  schedule:
    # Crontab Every Hour
    - cron: '0 * * * *'

jobs:
  action:
    runs-on: ubuntu-latest
    steps:
      - uses: kentaro-m/waiting-for-review-labeler@main
        with:
          hours-before-add-label: 24

Inputs

Name Description Default
repo-token Token for the repository. Can be passed in using {{ secrets.GITHUB_TOKEN }}. N/A
hours-before-add-label The number of hours to wait to add label to a pull request after it being opened or ready for review. 24
label-name The name of label to add it to a pull request after it being opened or ready for review. waiting for review
skip-approved-pull-request Skip adding label when a pull request review status is approved. false

📝 Licence

MIT

Waiting For Review Labeler is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Add label to a pull request after it being opened or ready for review for more than certain hours
v0.1.0
LatestPre-release

Waiting For Review Labeler is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.