generated from jacobtomlinson/python-container-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 831 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "dbt Cloud Get Job Run Action"
description: "This actions checks a dbt cloud job and find the most recent run. It then waits until the run is over and outputs the status"
branding:
icon: "cloud"
color: "orange"
author: "Steve Dowling"
inputs:
dbt_cloud_token:
description: dbt Cloud API token
required: true
dbt_cloud_account_id:
description: dbt Cloud account ID
required: true
dbt_cloud_job_id:
description: dbt Cloud Job ID
required: true
job_check_interval:
description: Interval between polls in seconds
required: false
default: "45"
outputs:
dbt_cloud_job_run_status:
description: "The human readable version of the most recent dbt cloud job"
dbt_cloud_job_run_url:
description: "A link to the dbt cloud job run"
runs:
using: "docker"
image: "Dockerfile"