This is an automated email from the ASF dual-hosted git repository.
janhoy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 9088feb7e90 SOLR-17986: Remove check for CHANGES.txt edits (#3854)
9088feb7e90 is described below
commit 9088feb7e9039512870201d0b88d3ea78b1e0e54
Author: Vivek Narang <[email protected]>
AuthorDate: Sun Nov 9 13:18:16 2025 -0500
SOLR-17986: Remove check for CHANGES.txt edits (#3854)
---
.github/workflows/validate-changelog.yml | 21 ---------------------
1 file changed, 21 deletions(-)
diff --git a/.github/workflows/validate-changelog.yml
b/.github/workflows/validate-changelog.yml
index e5b7cf158ac..2e1e02ffef6 100644
--- a/.github/workflows/validate-changelog.yml
+++ b/.github/workflows/validate-changelog.yml
@@ -26,27 +26,6 @@ jobs:
echo "skip=false" >> $GITHUB_OUTPUT
fi
- - name: Check for CHANGES.txt edits
- if: steps.check-label.outputs.skip == 'false'
- run: |
- # Get the list of changed files
- CHANGED_FILES=$(git diff --name-only origin/${{ github.base_ref
}}...HEAD)
-
- if echo "$CHANGED_FILES" | grep -q "^solr/CHANGES\.txt$"; then
- echo "::error::Use of solr/CHANGES.txt is deprecated. Please create
a changelog yaml file instead."
- echo ""
- echo "Instead of editing CHANGES.txt, please:"
- echo "1. Run: ./gradlew writeChangelog"
- echo "2. Edit the generated YAML file in changelog/unreleased/"
- echo "3. Commit both the code change and the YAML file"
- echo ""
- echo "For more information, see: dev-docs/changelog.adoc"
- echo ""
- echo "If this PR should not have a changelog entry (e.g.,
documentation-only changes),"
- echo "add the 'no-changelog' label to this PR."
- exit 1
- fi
-
- name: Check for changelog entry
if: steps.check-label.outputs.skip == 'false'
run: |