Skip to content

Commit ec26e32

Browse files
chore(devex): Add workflow to remind users to add a changelog entry (#378)
1 parent 8060ade commit ec26e32

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Changelog Reminder
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
6+
7+
jobs:
8+
remind:
9+
name: Changelog Reminder
10+
runs-on: ubuntu-latest
11+
if: ${{ !github.event.pull_request.draft }}
12+
permissions:
13+
contents: read
14+
pull-requests: write
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: mskelton/changelog-reminder-action@v3

0 commit comments

Comments
 (0)