diff --git a/.gitea/workflows/reuse.yml b/.gitea/workflows/reuse.yml index 72d19b0..aa8aa8f 100644 --- a/.gitea/workflows/reuse.yml +++ b/.gitea/workflows/reuse.yml @@ -1,9 +1,15 @@ name: Reusable Workflow -on: workflow_call # does not work on Gitea yet (17.07.2023) So GitHub only for now +on: + workflow_call: # does not work on Gitea yet (17.07.2023) So GitHub only for now + inputs: + person: + description: The name of the person who gets mentioned + required: false + default: Chuck Norris jobs: do-common-stuff: runs-on: ubuntu-latest steps: - name: Chuck Norris - run: echo Chuck Norris can browse the whole internet offline \ No newline at end of file + run: echo "${{inputs.person}} can browse the whole internet offline" \ No newline at end of file