diff options
Diffstat (limited to 'pkg/runner/testdata/mask-values/composite/action.yml')
-rw-r--r-- | pkg/runner/testdata/mask-values/composite/action.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/runner/testdata/mask-values/composite/action.yml b/pkg/runner/testdata/mask-values/composite/action.yml new file mode 100644 index 0000000..08a1b79 --- /dev/null +++ b/pkg/runner/testdata/mask-values/composite/action.yml @@ -0,0 +1,12 @@ +name: composite +description: composite + +runs: + using: composite + steps: + - run: echo "secret value" + shell: bash + - run: echo "::add-mask::$(echo "abc" | base64)" + shell: bash + - run: echo "abc" | base64 + shell: bash |