Releases: fal-ai/dbt-cloud-action
Releases · fal-ai/dbt-cloud-action
v4.4
v4.3
What's Changed
Full Changelog: v4.2...v4.3
v4.2
What's Changed
- Let action work with dbt cloud jobs which don't produce artifacts by @daniel-ferguson in #24
New Contributors
- @daniel-ferguson made their first contribution in #24
Full Changelog: v4.1...v4.2
v4.1
v4.0
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.
v3.3
What's Changed
Full Changelog: v3.2...v3.3
Retry failed requests and ignore error getting job info
What's Changed
Full Changelog: v3.1...v3.2
Add option to specify git_sha for dbt cloud
v3.1 remove unused packages (#9)
Stop checking out git SHA
We used to need
- uses: actions/checkout@v2
with:
fetch-depth: 0
Not anymore.
Minor update
v2.1 Npm audit fix