Skip to content

Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 in /example #79

Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 in /example

Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 in /example #79

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