We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afdd79b commit a5f84b4Copy full SHA for a5f84b4
.ci/scripts/skip_tests.py
@@ -25,7 +25,6 @@
25
DOC_PATTERNS = [
26
r"^docs/",
27
r"\.md$",
28
- r"\.txt$",
29
r"LICENSE.*",
30
r"CHANGELOG.*",
31
r"CHANGES.*",
.github/workflows/publish.yml
@@ -85,8 +85,11 @@ jobs:
85
pip install towncrier
86
87
- name: "Get release notes"
88
- id: get_release_notes
+ id: "get_release_notes"
89
+ shell: "bash"
90
run: |
91
+ # The last commit before the release commit contains the release CHANGES fragments
92
+ git checkout "${TAG_NAME}~"
93
NOTES=$(towncrier build --draft --version $TAG_NAME)
94
echo "body<<EOF" >> $GITHUB_OUTPUT
95
echo "$NOTES" >> $GITHUB_OUTPUT
0 commit comments