Skip to content

Commit

Permalink
Merge pull request #1880 from microsoft/workflow_dispatch
Browse files Browse the repository at this point in the history
Workflow dispatch for manually trigger SAR+ tests
  • Loading branch information
miguelgfierro authored Feb 21, 2023
2 parents c6b51b4 + 4b8d76e commit b09c536
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/azureml-cpu-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ on:
- tests/**
- setup.py

# enable manual trigger
# Enable manual trigger
workflow_dispatch:
input:
tags:
description: 'Tags to label this manual run (optional)'
default: 'Anything to describe this manual run'
default: 'Manual trigger'

# make this workflow reusable
# Make this workflow reusable
workflow_call:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/azureml-gpu-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ on:
- tests/**
- setup.py

# enable manual trigger
# Enable manual trigger
workflow_dispatch:
input:
tags:
description: 'Tags to label this manual run (optional)'
default: 'Anything to describe this manual run'
default: 'Manual trigger'

# make this workflow reusable
# Make this workflow reusable
workflow_call:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/azureml-spark-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ on:
- tests/**
- setup.py

# enable manual trigger
# Enable manual trigger
workflow_dispatch:
input:
tags:
description: 'Tags to label this manual run (optional)'
default: 'Anything to describe this manual run'
default: 'Manual trigger'

# make this workflow reusable
# Make this workflow reusable
workflow_call:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/azureml-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ on:
- '!tests/**/*.md'
- setup.py

# enable manual trigger
# Enable manual trigger
workflow_dispatch:
input:
tags:
description: 'Tags to label this manual run (optional)'
default: 'Anything to describe this manual run'
default: 'Manual trigger'

# make this workflow reusable
# Make this workflow reusable
workflow_call:

jobs:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/sarplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ on:
- contrib/sarplus/scala/**
- contrib/sarplus/VERSION
- .github/workflows/sarplus.yml

# Enable manual trigger
workflow_dispatch:

env:
SARPLUS_ROOT: ${{ github.workspace }}/contrib/sarplus
Expand All @@ -29,7 +32,7 @@ jobs:
# Test pysarplus with different versions of Python.
# Package pysarplus and upload as GitHub workflow artifact when merged into
# the main branch.
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
Expand Down

0 comments on commit b09c536

Please sign in to comment.