Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH Action - CKAN Command Manual Monitor Option #886

Merged
merged 3 commits into from
Mar 21, 2023
Merged
Changes from 2 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
7 changes: 6 additions & 1 deletion .github/workflows/ckan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ on: # yamllint disable-line rule:truthy
required: true
type: input
default: '1500M'
monitor:
description: 'Monitor log output?'
required: true
type: boolean
default: true


jobs:
Expand Down Expand Up @@ -67,7 +72,7 @@ jobs:
cf_username: ${{secrets.CF_SERVICE_USER}}
cf_password: ${{secrets.CF_SERVICE_AUTH}}
- name: monitor task output
if: ${{ inputs.command != 'ckan geodatagov sitemap-to-s3' }}
if: ${{ inputs.monitor }}
uses: cloud-gov/cg-cli-tools@main
with:
command: >
Expand Down