From f5eee554aecbee6f2f8e18de089476c3bf957ddc Mon Sep 17 00:00:00 2001 From: Stephan Date: Mon, 7 Jun 2021 18:31:02 +0200 Subject: [PATCH] ... --- .github/actions/utils/action.yml | 7 ++++++- .github/workflows/exp.yml | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-) 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