chore(devex): Add workflow to remind users to add a changelog entry (#378)

This commit is contained in:
Brendan Kellam 2025-07-14 11:41:13 -07:00 committed by GitHub
parent 8060adee73
commit ec26e32a65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,17 @@
name: Changelog Reminder
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
remind:
name: Changelog Reminder
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: mskelton/changelog-reminder-action@v3