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
Checkout this pull request for demo
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