What's Changed
- Add last step information by @chamini2 in #16
- Add failure_on_error option to avoid failing when there are job errors by @chamini2 in #17
- Add options for all "Trigger job to run" payload properties by @chamini2 in #18
Full Changelog: v3.3...v4.0
Example usage of new features: https://github.com/fal-ai/fal_bike_example
- uses: fal-ai/dbt-cloud-action@main
id: dbt_cloud_run
with:
dbt_cloud_token: ${{ secrets.DBT_CLOUD_API_TOKEN }}
dbt_cloud_account_id: ${{ secrets.DBT_CLOUD_ACCOUNT_ID }}
dbt_cloud_job_id: ${{ secrets.DBT_CLOUD_JOB_ID }}
interval: 5
failure_on_error: false
cause: "Some cause"
git_sha: ${{ github.sha }}
threads_override: 1
generate_docs_override: false
steps_override: |
- dbt seed
- dbt run
steps_override
note
It must be a string because GH actions don't support object inputs (array, dictionaries).
Worked around it by using |
and parsing the passed YAML.