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 36b433e commit b31a92bCopy full SHA for b31a92b
ci/praktika/native_jobs.py
@@ -359,7 +359,12 @@ def _check_db(workflow):
359
)
360
361
362
- if workflow.enable_job_filtering_by_changes and results[-1].is_ok():
+ pr_allows_cache = "[x] <!---no_ci_cache" not in Info().pr_body
363
+ if (
364
+ workflow.enable_job_filtering_by_changes
365
+ and results[-1].is_ok()
366
+ and pr_allows_cache
367
+ ):
368
print("Filter not affected jobs")
369
370
def check_affected_jobs():
@@ -439,7 +444,7 @@ def check_affected_jobs():
439
444
440
445
441
446
442
- if results[-1].is_ok() and workflow.enable_cache:
447
+ if results[-1].is_ok() and workflow.enable_cache and pr_allows_cache:
443
448
print("Cache Lookup")
449
stop_watch = Utils.Stopwatch()
450
info = ""
0 commit comments