Skip to content

Commit

Permalink
Update manual_workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Francotorrico authored Apr 14, 2024
1 parent 1e68c20 commit 5d8e164
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions .github/workflows/manual_workflow.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
name: Manual Trigger Workflow
name: Manual Trigger Workflow with loglevel & tags

on:
workflow_dispatch:
inputs:
environment:
description: 'Seleccione el entorno de destino'
logLevel:
description: 'Log level'
required: true
default: 'QA'
default: 'information'
type: choice
options:
- 'QA'
- 'Producción'
- information
- debug
- warning
- critical
tags:
description: 'Purpose of Run This Workflow?'
required: true
type: string
push:
branches:
- franco-pagos-qa

jobs:
ci-pagos-qa:
print-tag:
runs-on: ubuntu-latest

steps:
- name: Paso 1
run: echo "Este es el paso 1"

- name: Paso 2
run: echo "Este es el paso 2"
- name: Print the purpose of run
run: echo ${{ inputs.tags }} purpose

0 comments on commit 5d8e164

Please sign in to comment.