mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
16 lines
390 B
C#
16 lines
390 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace GitHub.DistributedTask.Logging
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface ISecretMasker
|
|
{
|
|
void AddRegex(String pattern);
|
|
void AddValue(String value);
|
|
void AddValueEncoder(ValueEncoder encoder);
|
|
ISecretMasker Clone();
|
|
String MaskSecrets(String input);
|
|
}
|
|
}
|