summaryrefslogtreecommitdiff
path: root/.github/scripts/check-changelog.sh
diff options
context:
space:
mode:
authorcarsakiller <carsakiller@gmail.com>2024-05-23 08:31:36 +0000
committercarsakiller <carsakiller@gmail.com>2024-05-23 08:31:36 +0000
commit75ed0bfacfee29f54cdab6b1218f0e48677a1fe6 (patch)
tree82df8982e2e7d3e7735ff4b6d1bc5ac8e2736200 /.github/scripts/check-changelog.sh
parentf6d3af8d34875ce073bb78e2f50bf1bc2b151a87 (diff)
downloadlua-language-server-75ed0bfacfee29f54cdab6b1218f0e48677a1fe6.zip
add: unreleased section to changelog
Diffstat (limited to '.github/scripts/check-changelog.sh')
-rwxr-xr-x.github/scripts/check-changelog.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/.github/scripts/check-changelog.sh b/.github/scripts/check-changelog.sh
index d6887bc1..ae3b8b11 100755
--- a/.github/scripts/check-changelog.sh
+++ b/.github/scripts/check-changelog.sh
@@ -4,12 +4,9 @@ set -e
CHANGELOG_FILE="changelog.md"
-
git fetch origin $GITHUB_BASE_REF
git fetch
-echo $(git branch -a)
-
# Check if the changelog file was modified in the PR
if git diff --name-only origin/$GITHUB_BASE_REF..remotes/pull/$GITHUB_SOURCE_REF | grep -q $CHANGELOG_FILE; then
echo "Thank you for updating the changelog!"