Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .ci/scripts/skip_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
DOC_PATTERNS = [
r"^docs/",
r"\.md$",
r"\.txt$",
r"LICENSE.*",
r"CHANGELOG.*",
r"CHANGES.*",
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,11 @@ jobs:
pip install towncrier

- name: "Get release notes"
id: get_release_notes
id: "get_release_notes"
shell: "bash"
run: |
# The last commit before the release commit contains the release CHANGES fragments
git checkout "${TAG_NAME}~"
NOTES=$(towncrier build --draft --version $TAG_NAME)
echo "body<<EOF" >> $GITHUB_OUTPUT
echo "$NOTES" >> $GITHUB_OUTPUT
Expand Down