mirror of
https://github.com/actions/runner.git
synced 2026-01-13 22:52:16 +08: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;
|
|
}
|
|
}
|
|
} |