Skip to content

Releases: fal-ai/dbt-cloud-action

v4.4

11 Dec 20:47
191eae7
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v4.3...v4.4

v4.3

17 Feb 18:07
08fd358
Compare
Choose a tag to compare

What's Changed

  • Add option to not wait for dbt job to finish by @skwon615 in #25

Full Changelog: v4.2...v4.3

v4.2

26 Jan 20:54
1ea5071
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v4.1...v4.2

v4.1

01 Nov 14:44
dd2a2c4
Compare
Choose a tag to compare

What's Changed

  • doc: Add example reference and comment about steps_override by @chamini2 in #19
  • Add runId as an output by @skwon615 in #21
  • chore: upgrade github packages to avoid warnings by @chamini2 in #22

New Contributors

Full Changelog: v4.0...v4.1

v4.0

20 Sep 23:39
9f46e7d
Compare
Choose a tag to compare

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

17 Aug 15:26
fdb4bff
Compare
Choose a tag to compare

What's Changed

  • Add logs when job fails and always return git sha by @chamini2 in #13

Full Changelog: v3.2...v3.3

Retry failed requests and ignore error getting job info

11 Aug 17:34
48d1f43
Compare
Choose a tag to compare

What's Changed

  • Retry failed requests and ignore error getting job info by @chamini2 in #11

Full Changelog: v3.1...v3.2

Add option to specify git_sha for dbt cloud

25 Jul 17:56
95e6693
Compare
Choose a tag to compare

Stop checking out git SHA

25 Jul 17:55
5c0affe
Compare
Choose a tag to compare

We used to need

       - uses: actions/checkout@v2
         with:
           fetch-depth: 0

Not anymore.

Minor update

18 Mar 13:46
Compare
Choose a tag to compare
v2.1

Npm audit fix