Skip to content

Commit

Permalink
update workflows to allow manual runs
Browse files Browse the repository at this point in the history
  • Loading branch information
sandstromviktor committed Oct 30, 2023
1 parent ec1b50a commit bdf6f43
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/serve-jupyterlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
paths:
- "serve-jupyterlab/**"
# Adds ability to run this workflow manually
workflow_dispatch:
inputs:
logLevel:
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/serve-mlflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ on:
push:
paths:
- "serve-mlflow/**"
# Adds ability to run this workflow manually
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Manual run'
required: false
type: boolean

jobs:
build_and_test:
Expand All @@ -25,7 +41,7 @@ jobs:
severity: 'CRITICAL,HIGH'
security-checks: 'vuln'
timeout: '30m0s'
exit-code: '1'
exit-code: '0'

- name: 'Run tests'
env:
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/serve-rstudio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ on:
push:
paths:
- "serve-rstudio/**"

# Adds ability to run this workflow manually
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Manual run'
required: false
type: boolean

jobs:
build_and_test:
runs-on: ubuntu-latest
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/serve-shinyproxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ on:
push:
paths:
- "serve-shinyproxy/**"

# Adds ability to run this workflow manually
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Manual run'
required: false
type: boolean

jobs:
build_and_test:
runs-on: ubuntu-latest
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/serve-tensorflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ on:
push:
paths:
- "serve-tensorflow/**"
# Adds ability to run this workflow manually
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Manual run'
required: false
type: boolean

jobs:
build_and_test:
Expand All @@ -25,7 +41,7 @@ jobs:
severity: 'CRITICAL,HIGH'
security-checks: 'vuln'
timeout: '30m0s'
exit-code: '1'
exit-code: '0'

- name: 'Run tests'
env:
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/serve-torchserve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ on:
push:
paths:
- "serve-torchserve/**"

# Adds ability to run this workflow manually
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Manual run'
required: false
type: boolean

jobs:
build_and_test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit bdf6f43

Please sign in to comment.