mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
chore(devex): Add workflow to remind users to add a changelog entry (#378)
This commit is contained in:
parent
8060adee73
commit
ec26e32a65
1 changed files with 17 additions and 0 deletions
17
.github/workflows/changelog-reminder.yml
vendored
Normal file
17
.github/workflows/changelog-reminder.yml
vendored
Normal 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
|
||||||
Loading…
Reference in a new issue