mirror of
https://github.com/actions/runner.git
synced 2025-12-12 15:13:30 +00:00
12 lines
253 B
C#
12 lines
253 B
C#
using System;
|
|
|
|
namespace GitHub.Actions.Expressions
|
|
{
|
|
/// <summary>
|
|
/// Used to mask secrets from trace messages and exception messages
|
|
/// </summary>
|
|
public interface ISecretMasker
|
|
{
|
|
String MaskSecrets(String input);
|
|
}
|
|
} |