Move changelog test to GitHub actions

This commit is contained in:
JAremko 2019-12-14 19:45:25 +02:00 committed by Eugene Yaremenko
parent 7933ec48fb
commit 3f559a4233
2 changed files with 14 additions and 3 deletions

View File

@ -181,6 +181,6 @@ workflows:
- "Validate Documentation (required)":
requires:
- "Validate PR"
- "CHANGELOG.develop updated (optional)":
requires:
- "Validate PR"
# - "CHANGELOG.develop updated (optional)":
# requires:
# - "Validate PR"

11
.github/workflows/changelogs.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: "Ask contributors to update changelog"
on: [pull_request, push]
jobs:
test-action:
runs-on: ubuntu-latest
steps:
- name: Changelog Reminder
uses: peterjgrainger/action-changelog-reminder@v1.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}