15 lines
277 B
YAML
15 lines
277 B
YAML
name: Test inputs
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
restart:
|
|
description: Restart gitea after updating the theme files
|
|
required: false
|
|
type: boolean
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo '${{ inputs.restart }}'
|