Skip to content

Commit

Permalink
Merge pull request #23 from jenkinsci/skip-secrets
Browse files Browse the repository at this point in the history
Skip secrets that do not contain the label
  • Loading branch information
tylrd authored Oct 27, 2020
2 parents 9d1ef5b + 6ada6fa commit 8b9cb0f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ public Collection<StandardCredentials> get() {
if (!matchesLabel(labelValue, filters)) {
continue;
}
} else {
continue;
}
}

Expand Down

0 comments on commit 8b9cb0f

Please sign in to comment.