Skip to content

Commit 0f63d3c

Browse files
committed
Update CI files
1 parent 198588b commit 0f63d3c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.ci/scripts/skip_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
DOC_PATTERNS = [
2626
r"^docs/",
2727
r"\.md$",
28-
r"\.txt$",
2928
r"LICENSE.*",
3029
r"CHANGELOG.*",
3130
r"CHANGES.*",

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,11 @@ jobs:
167167
pip install towncrier
168168
169169
- name: "Get release notes"
170-
id: get_release_notes
170+
id: "get_release_notes"
171+
shell: "bash"
171172
run: |
173+
# The last commit before the release commit contains the release CHANGES fragments
174+
git checkout "${TAG_NAME}~"
172175
NOTES=$(towncrier build --draft --version $TAG_NAME)
173176
echo "body<<EOF" >> $GITHUB_OUTPUT
174177
echo "$NOTES" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)