summaryrefslogtreecommitdiff
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
parentf6d3af8d34875ce073bb78e2f50bf1bc2b151a87 (diff)
downloadlua-language-server-75ed0bfacfee29f54cdab6b1218f0e48677a1fe6.zip
add: unreleased section to changelog
-rwxr-xr-x.github/scripts/check-changelog.sh3
-rw-r--r--changelog.md5
2 files changed, 4 insertions, 4 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!"
diff --git a/changelog.md b/changelog.md
index 85c073d7..62ca8974 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,8 @@
# changelog
+## Unreleased
+<!-- Add all new changes here. They will be moved under a version at release -->
+
## 3.9.0
`2024-5-11`
* `NEW` goto implementation
@@ -123,7 +126,7 @@
Cat = 1,
Dog = 2,
}
-
+
---@param animal userdata
---@param atp AnimalType
---@return boolean