-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: switch changelog reminder to new action
Now using mskelton/changelog-reminder-action@v3
- Loading branch information
1 parent
c10c129
commit 61809ca
Showing
1 changed file
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
name: Changelog Reminder | ||
|
||
on: pull_request | ||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
remind: | ||
name: Changelog Reminder | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/checkout@v3 | ||
- name: Changelog Reminder | ||
uses: peterjgrainger/action-changelog-reminder@v1.3.0 | ||
uses: mskelton/changelog-reminder-action@v3 | ||
with: | ||
changelog_regex: '/CHANGELOG.md' | ||
customPrMessage: "We couldn't find any modification to the CHANGELOG.md file. If your changes are not suitable for the changelog, that's fine. Otherwise please add them to the changelog!" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
message: "@${{ github.actor }} We couldn't find any modification to the CHANGELOG.md file. If your changes are not suitable for the changelog, that's fine. Otherwise please add them to the changelog!" |