Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #47 from galasa-dev/iss1958
Browse files Browse the repository at this point in the history
Add workflow dispatch inputs
  • Loading branch information
jadecarino authored Aug 9, 2024
2 parents c086dfc + 6c159cf commit 7c19851
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@ name: Main build

on:
workflow_dispatch:
inputs:
jacocoEnabled:
description: 'Enable Jacoco code coverage (set to "false" for release builds)'
required: true
default: 'true'
type: choice
options:
- 'true'
- 'false'
isMainOrRelease:
description: 'This build is for the main branch or a release (set to "false" for development branch builds)'
required: true
default: 'true'
type: choice
options:
- 'true'
- 'false'
push:
branches: [main]

Expand Down

0 comments on commit 7c19851

Please sign in to comment.