Skip to content

Commit a5f84b4

Browse files
committed
Update CI files
1 parent afdd79b commit a5f84b4

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
@@ -85,8 +85,11 @@ jobs:
8585
pip install towncrier
8686
8787
- name: "Get release notes"
88-
id: get_release_notes
88+
id: "get_release_notes"
89+
shell: "bash"
8990
run: |
91+
# The last commit before the release commit contains the release CHANGES fragments
92+
git checkout "${TAG_NAME}~"
9093
NOTES=$(towncrier build --draft --version $TAG_NAME)
9194
echo "body<<EOF" >> $GITHUB_OUTPUT
9295
echo "$NOTES" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)