This commit is contained in:
parent
f290ac9b06
commit
c05b0388a5
1 changed files with 30 additions and 0 deletions
30
.forgejo/workflows/manual.yml
Normal file
30
.forgejo/workflows/manual.yml
Normal file
|
@ -0,0 +1,30 @@
|
|||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
logLevel:
|
||||
description: 'Log Level'
|
||||
required: true
|
||||
default: 'warning'
|
||||
type: choice
|
||||
options:
|
||||
- info
|
||||
- warning
|
||||
- debug
|
||||
boolean:
|
||||
description: 'Boolean'
|
||||
required: false
|
||||
type: boolean
|
||||
number:
|
||||
description: 'Number'
|
||||
default: '100'
|
||||
type: number
|
||||
string:
|
||||
description: 'String'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- run: echo ${{ inputs.logLevel }}
|
Loading…
Add table
Reference in a new issue