summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/mask-values/composite/action.yml
blob: 08a1b79d6916a4a59d7cdda5284b9c8e415d1783 (plain)
1
2
3
4
5
6
7
8
9
10
11
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