We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 082e5ac commit 461f2e2Copy full SHA for 461f2e2
1 file changed
.github/workflows/manual.yml
@@ -5,10 +5,16 @@ name: Manual workflow
5
# Controls when the action will run. Workflow runs when manually triggered using the UI
6
# or API.
7
on:
8
- push:
9
- branches: [ master ]
10
- pull_request:
11
+ workflow_dispatch:
+ # Inputs the workflow accepts.
+ inputs:
+ name:
12
+ # Friendly description to be shown in the UI instead of 'name'
13
+ description: 'Person to greet'
14
+ # Default value if no value is explicitly provided
15
+ default: 'World'
16
+ # Input has to be provided for the workflow to run
17
+ required: true
18
19
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
20
jobs:
0 commit comments