Skip to content

Pull request reviewee reminder action

Actions

About

Action to send Github mentions when there are pull requests that has exceeded the lifetime
v2.0.0
Latest
Star (4)

Tags

 (1)

reminder-test

Pull Request reviewee reminder action

Summary

Action to send Github mentions when there are pull requests that has exceeded the lifetime. This action generated from actions/typescript-action. If the pull request is alive within the specified time, they will send a mention to the github reviewee. This is useful if you have a long lived pull request.

Setup

Create a file with the following content under .github/workflows/pull-request-reviewee-reminder.yml.

name: 'Pull request reviewee reminder'
on:
  schedule:
    # Check pull requests every weekday, 10:00 and 17:00
    - cron: '0 10,17 * * 1-5'
    
jobs:
  pull-request-reviewee-reminder: 
    runs-on: ubuntu-latest
    steps:
      - uses: tommykw/pull-request-reviewee-reminder-action@v2
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }} # Required
          reminder_message: 'The pull request has been alive for more than 2 days. Let's work with priority.' # Required. Messages to send to reviewee on Github.
          pull_request_lifetime_hours: 48 # Required. This is a lifetime of pull request. If this time is exceeded, a reminder wil be send.

License

MIT

Pull request reviewee reminder action 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

Action to send Github mentions when there are pull requests that has exceeded the lifetime
v2.0.0
Latest

Tags

 (1)

Pull request reviewee reminder action 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.