Update .gitea/workflows/reuse.yml
Test Gitea Actions support Matrix? / build (12, ubuntu-latest) (push) Failing after 32s
Test Gitea Actions support Matrix? / build (14, ubuntu-latest) (push) Successful in 35s
Test Gitea Actions support Matrix? / build (16, ubuntu-latest) (push) Successful in 32s
Test Gitea Actions support Matrix? / build (18, ubuntu-latest) (push) Successful in 39s
Build Workflow / Build (push) Successful in 1m51s
Build Workflow / Deploy (push) Successful in 1m2s

This commit is contained in:
2023-07-17 00:45:57 +02:00
parent 4cc0956e06
commit 37ced72dd9
+8 -2
View File
@@ -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
run: echo "${{inputs.person}} can browse the whole internet offline"