Skip to content

A github action to automatically remind contributors to update their branch when there is a new commit in the base branch

License

Notifications You must be signed in to change notification settings

Bhupesh-V/update-pr-reminder-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Update PR Reminder Action

A github action to automatically remind pull request authors to update their branch as soon as there is a new commit (or merge) in the base branch

PR Update Reminder Twitter: Bhupesh Varshney

✨ Demo

update-pr-reminder-action-demo

❓ Usage

name: PR Update Reminder
on:
  push:
    branches:
      - main
      - dev

env:
  # make sure to set this as env
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
  remind_authors:
    runs-on: ubuntu-latest
    name: Update PR Reminder Test
    steps:
      - uses: actions/checkout@v2
      - uses: Bhupesh-V/update-pr-reminder-action@main