mirror of
https://github.com/actions/runner.git
synced 2025-12-15 06:26:46 +00:00
12 lines
220 B
C#
12 lines
220 B
C#
using System;
|
|
|
|
namespace GitHub.Actions.Expressions
|
|
{
|
|
internal sealed class NoOpSecretMasker : ISecretMasker
|
|
{
|
|
public String MaskSecrets(String input)
|
|
{
|
|
return input;
|
|
}
|
|
}
|
|
} |