Update .gitea/workflows/testfly.yaml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 34s

This commit is contained in:
Martin Cholewa 2025-01-20 16:12:28 +01:00
parent b254cc81e6
commit e5036ee615

View File

@ -1,10 +1,26 @@
name: Gitea Actions Demo name: Manual Trigger Workflow with loglevel & tags
run-name: THIS is testing out Gitea Actions 🚀 #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: jobs:
Explore-Gitea-Actions: print-tag:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check for manual trigger - name: Print the purpose of run
if: ${{ env.MANUAL_TRIGGER == 'true' }} run: echo ${{ inputs.tags }} purpose
run: echo "🎉 This job was manually triggered!"