Skip to content

Commit 461f2e2

Browse files
committed
Updated travis yml to exclude code coverage
1 parent 082e5ac commit 461f2e2

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/manual.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@ name: Manual workflow
55
# Controls when the action will run. Workflow runs when manually triggered using the UI
66
# or API.
77
on:
8-
push:
9-
branches: [ master ]
10-
pull_request:
11-
branches: [ master ]
8+
workflow_dispatch:
9+
# Inputs the workflow accepts.
10+
inputs:
11+
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
1218

1319
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1420
jobs:

0 commit comments

Comments
 (0)