Skip to content

Bump tar from 7.5.4 to 7.5.7 in /example #76

Bump tar from 7.5.4 to 7.5.7 in /example

Bump tar from 7.5.4 to 7.5.7 in /example #76

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