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 99dfe56 commit dc98381Copy full SHA for dc98381
1 file changed
lib/job.js
@@ -1253,8 +1253,10 @@ class Jobs {
1253
delete combo_job.procs;
1254
delete combo_job.conns;
1255
1256
- // add special tag if job produced output files
1257
- if (combo_job.files && combo_job.files.length) combo_job.tags.push('_files');
+ // add special tag if job has input or output files
+ if ((combo_job.files && combo_job.files.length) || (combo_job.input && combo_job.input.files && combo_job.input.files.length)) {
1258
+ combo_job.tags.push('_files');
1259
+ }
1260
1261
// update event state, for UI hints and such
1262
if (!job.retried && (job.type != 'adhoc')) {
0 commit comments