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 198588b commit 0f63d3cCopy full SHA for 0f63d3c
.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
@@ -167,8 +167,11 @@ jobs:
167
pip install towncrier
168
169
- name: "Get release notes"
170
- id: get_release_notes
+ id: "get_release_notes"
171
+ shell: "bash"
172
run: |
173
+ # The last commit before the release commit contains the release CHANGES fragments
174
+ git checkout "${TAG_NAME}~"
175
NOTES=$(towncrier build --draft --version $TAG_NAME)
176
echo "body<<EOF" >> $GITHUB_OUTPUT
177
echo "$NOTES" >> $GITHUB_OUTPUT
0 commit comments