diff --git a/.github/actions/utils/action.yml b/.github/actions/utils/action.yml index 3b123b9..a1b7a55 100644 --- a/.github/actions/utils/action.yml +++ b/.github/actions/utils/action.yml @@ -4,11 +4,16 @@ description: | Utils... author: ZpqrtBnk +inputs: + mode: + description: Some Description + default: miss + runs: using: composite steps: - shell: bash - run: echo "Hello from Utils" + run: echo "Hello from Utils + ${{ inputs.mode }}" branding: color: blue diff --git a/.github/workflows/exp.yml b/.github/workflows/exp.yml index 8ef76bf..bda7e10 100644 --- a/.github/workflows/exp.yml +++ b/.github/workflows/exp.yml @@ -19,4 +19,6 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Invoke - uses: ./.github/actions/utils \ No newline at end of file + uses: ./.github/actions/utils + with: + mode: meh \ No newline at end of file