Files
actions-playground/.gitea/workflows/reuse.yml
T
tom.coursow 37ced72dd9
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
Update .gitea/workflows/reuse.yml
2023-07-17 00:45:57 +02:00

15 lines
478 B
YAML

name: Reusable Workflow
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 "${{inputs.person}} can browse the whole internet offline"