We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7cc63e commit 9b024ccCopy full SHA for 9b024cc
src/extract.rs
@@ -24,6 +24,9 @@ static IGNORE_BLOCK: &[(&str, &str)] = &[
24
("[command]/usr/bin/git", "##[endgroup]"),
25
// Skip clock drift checks
26
("== clock drift check ==", "== end clock drift check =="),
27
+ // Skip environment variable dumps, as these can contain e.g. a SHA which is different in every
28
+ // build.
29
+ ("env:", "##[endgroup]"),
30
];
31
32
lazy_static! {
0 commit comments