Skip to content

Bump react-router and react-router-native in /example #56

Bump react-router and react-router-native in /example

Bump react-router and react-router-native in /example #56

Workflow file for this run

name: Changelog updated
on: pull_request
jobs:
check-changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Fetch master branch
run: |
git fetch origin master:master
- name: Check that changelog is updated
run: |
if ! git diff --name-only master | grep -q '^CHANGELOG.md$'; then
echo "Error: CHANGELOG.md has not been updated."
exit 1
fi