Skip to content

Commit a1765e1

Browse files
always run scheduled builds (#70)
1 parent 63c6044 commit a1765e1

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**2.0.13 - 11/21/2025**
2+
3+
- Bugfix: stop skipping scheduled builds if the last commit was CHANGELOG-only
4+
15
**2.0.12 - 10/22/2025**
26

37
- Skip Jenkins builds for CHANGELOG-only commits

vars/reusable_pipeline.groovy

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,11 @@ def call(Map config = [:]){
157157
stage("Python Versions") {
158158
// Skip builds if this commit only contains changelog changes
159159
when {
160-
not {
161-
environment name: 'IS_CHANGELOG_ONLY_COMMIT', value: 'true'
160+
anyOf {
161+
environment name: 'IS_CRON', value: 'true'
162+
not {
163+
environment name: 'IS_CHANGELOG_ONLY_COMMIT', value: 'true'
164+
}
162165
}
163166
}
164167
steps {

0 commit comments

Comments
 (0)