Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .github/workflows/test_cloud_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,21 @@ on:
workflow_dispatch:
inputs:
fre-workflows-repo:
description: "If using fork: Input fork name (example: singhd789/fre-workflows). Leave empty if not using a fork."
description: "IF ON FORK: Input fre-workflows fork name (example: singhd789/fre-workflows). Leave empty if not using a fork."
required: false
type: string
fre-workflows-branch:
description: 'If on fork: Input branch you are using on your fork.'
description: 'IF ON FORK: Input fre-workflows branch to check out. Leave empty if not using a fork.'
required: false
default: 'main'
type: string
fre-cli-repo:
description: 'NOAA-GFDL/fre-cli repo'
description: 'Input fre-cli repo (default: NOAA-GFDL/fre-cli)'
required: true
type: choice
type: string
default: 'NOAA-GFDL/fre-cli'
options:
- 'NOAA-GFDL/fre-cli'
fre-cli-branch:
description: 'Input which fre-cli branch to check out'
description: 'Input fre-cli branch to check out.'
required: true
default: 'main'
type: string
Expand All @@ -28,9 +26,9 @@ on:
- main # triggers pipeline on push to main

# cancel running jobs if theres a newer push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
#concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true

jobs:
test-cloud:
Expand Down
Loading