actRunners/.gitea/workflows/testfly.yaml
Martin Cholewa e5036ee615
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 34s
Update .gitea/workflows/testfly.yaml
2025-01-20 16:12:28 +01:00

26 lines
591 B
YAML

name: Manual Trigger Workflow with loglevel & tags
#get log & tags information
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'information'
type: choice
options:
- information
- debug
- warning
- critical
tags:
description: 'Purpose of Run This Workflow?'
required: true
type: string
jobs:
print-tag:
runs-on: ubuntu-latest
steps:
- name: Print the purpose of run
run: echo ${{ inputs.tags }} purpose