We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63c6044 commit a1765e1Copy full SHA for a1765e1
CHANGELOG.rst
@@ -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
5
**2.0.12 - 10/22/2025**
6
7
- Skip Jenkins builds for CHANGELOG-only commits
vars/reusable_pipeline.groovy
@@ -157,8 +157,11 @@ def call(Map config = [:]){
157
stage("Python Versions") {
158
// Skip builds if this commit only contains changelog changes
159
when {
160
- not {
161
- environment name: 'IS_CHANGELOG_ONLY_COMMIT', value: 'true'
+ anyOf {
+ environment name: 'IS_CRON', value: 'true'
162
+ not {
163
+ environment name: 'IS_CHANGELOG_ONLY_COMMIT', value: 'true'
164
+ }
165
}
166
167
steps {
0 commit comments