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
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:
@@ -1,9 +1,15 @@
|
|||||||
name: Reusable Workflow
|
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:
|
jobs:
|
||||||
do-common-stuff:
|
do-common-stuff:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Chuck Norris
|
- name: Chuck Norris
|
||||||
run: echo Chuck Norris can browse the whole internet offline
|
run: echo "${{inputs.person}} can browse the whole internet offline"
|
||||||
Reference in New Issue
Block a user