<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is there any way to run jobs from github actions and catch the results? in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138927#M51051</link>
    <description>&lt;P&gt;OK, thank you for your advices, I will consider to use asset bundles for this.&lt;/P&gt;</description>
    <pubDate>Thu, 13 Nov 2025 13:19:29 GMT</pubDate>
    <dc:creator>Yuki</dc:creator>
    <dc:date>2025-11-13T13:19:29Z</dc:date>
    <item>
      <title>Is there any way to run jobs from github actions and catch the results?</title>
      <link>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138870#M51029</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Is there any way to run jobs from github actions and catch the results?&lt;/P&gt;&lt;P&gt;Of course, I can do this if I use the API or CLI.&lt;BR /&gt;But I found the actions for notebook:&amp;nbsp;&lt;A href="https://github.com/marketplace/actions/run-databricks-notebook" target="_blank"&gt;https://github.com/marketplace/actions/run-databricks-notebook&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Compared to this, writing code from scratch for jobs is complicated. Is there a better way?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 08:35:46 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138870#M51029</guid>
      <dc:creator>Yuki</dc:creator>
      <dc:date>2025-11-13T08:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any way to run jobs from github actions and catch the results?</title>
      <link>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138886#M51033</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/93088"&gt;@Yuki&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can run Databricks jobs from GitHub Actions and capture their results using the "Run Databricks Notebook" GitHub Action. This tool abstracts much of the manual code and API work, making integration with your CI/CD pipeline easier&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/marketplace/actions/run-databricks-notebook" target="_blank"&gt;https://github.com/marketplace/actions/run-databricks-notebook&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The databricks/run-notebook GitHub Action allows you to trigger Databricks notebooks directly from workflow YAML files.&lt;/P&gt;&lt;P&gt;You can configure your workflow to parse and utilize output values for subsequent automation.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The Action awaits completion, so you can perform checks or notifications&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;REST API or CLI from a custom GitHub Actions workflow step requires more manual coding&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 09:55:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138886#M51033</guid>
      <dc:creator>ManojkMohan</dc:creator>
      <dc:date>2025-11-13T09:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any way to run jobs from github actions and catch the results?</title>
      <link>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138895#M51038</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/155141"&gt;@ManojkMohan&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for your response, but I knew that.&lt;BR /&gt;My&amp;nbsp;problem is that I can't find similar tools for "Databricks Jobs &amp;amp; Pipelines".&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 11:23:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138895#M51038</guid>
      <dc:creator>Yuki</dc:creator>
      <dc:date>2025-11-13T11:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any way to run jobs from github actions and catch the results?</title>
      <link>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138906#M51041</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/93088"&gt;@Yuki&lt;/a&gt;&amp;nbsp;There is currently no GitHub Action that provides a no-code experience in the same way as the "Run Databricks Notebook" Action does for individual notebooks.&lt;/P&gt;&lt;P&gt;Alternate work arounds:&lt;/P&gt;&lt;P&gt;1. Databricks Asset Bundles + GitHub Actions&lt;BR /&gt;Package job and pipeline definitions as YAML files using Databricks Asset Bundles (DABs).&lt;/P&gt;&lt;P&gt;Use CLI automation within GitHub Actions&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.databricks.com/aws/en/dev-tools/ci-cd/" target="_blank"&gt;https://docs.databricks.com/aws/en/dev-tools/ci-cd/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;use Azure Data Factory to trigger Databricks jobs, with monitoring and outputs passed back to GitHub Actions as part of a broader workflow&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/answers/questions/5514533/databricks-repos-or-alternatives" target="_blank"&gt;https://learn.microsoft.com/en-us/answers/questions/5514533/databricks-repos-or-alternatives&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 11:37:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138906#M51041</guid>
      <dc:creator>ManojkMohan</dc:creator>
      <dc:date>2025-11-13T11:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any way to run jobs from github actions and catch the results?</title>
      <link>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138927#M51051</link>
      <description>&lt;P&gt;OK, thank you for your advices, I will consider to use asset bundles for this.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 13:19:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/is-there-any-way-to-run-jobs-from-github-actions-and-catch-the/m-p/138927#M51051</guid>
      <dc:creator>Yuki</dc:creator>
      <dc:date>2025-11-13T13:19:29Z</dc:date>
    </item>
  </channel>
</rss>

