Update .gitea/workflows/testfly.yaml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 34s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 34s
This commit is contained in:
parent
b254cc81e6
commit
e5036ee615
@ -1,10 +1,26 @@
|
||||
name: Gitea Actions Demo
|
||||
run-name: THIS is testing out Gitea Actions 🚀
|
||||
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:
|
||||
Explore-Gitea-Actions:
|
||||
print-tag:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check for manual trigger
|
||||
if: ${{ env.MANUAL_TRIGGER == 'true' }}
|
||||
run: echo "🎉 This job was manually triggered!"
|
||||
- name: Print the purpose of run
|
||||
run: echo ${{ inputs.tags }} purpose
|
Loading…
x
Reference in New Issue
Block a user