<?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: Running notebook from another notebook does not work when running notebook from github actions in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10607#M5761</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;name: Setup
on: 
  workflow_dispatch:
jobs:
  run-notebooks:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Run a databricks notebook
        uses: databricks/run-notebook@v0
        with:
         local-notebook-path: Setup.sql
         databricks-host: &lt;A href="https://myhost.cloud.databricks.com/" target="test_blank"&gt;https://myhost.cloud.databricks.com/&lt;/A&gt;
         databricks-token: ${{ secrets.DATABRICKS_TOKEN }}
         git-commit: ${{ github.event.pull_request.head.sha }}
         existing-cluster-id : myclusterid&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is the yml file running from github actions. &lt;/P&gt;</description>
    <pubDate>Thu, 26 Jan 2023 20:17:30 GMT</pubDate>
    <dc:creator>Ullsokk</dc:creator>
    <dc:date>2023-01-26T20:17:30Z</dc:date>
    <item>
      <title>Running notebook from another notebook does not work when running notebook from github actions</title>
      <link>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10603#M5757</link>
      <description>&lt;P&gt;I have a setup-notebook that users %run to run a series of notebooks. The notebook is in the root folder of my repo. In a subfolder I have several notebooks I want to run. If I run the notebook in databricks, the relative paths work (%run "./subfolder/some notebook"). But when I try to run this setup-notebook from github actions, I get the following error:   Notebook not found: tmp/databricks-github-actions/24245-645-tr-rtgtr-3443/subfolder/some notebook. &lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 14:36:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10603#M5757</guid>
      <dc:creator>Ullsokk</dc:creator>
      <dc:date>2023-01-26T14:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Running notebook from another notebook does not work when running notebook from github actions</title>
      <link>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10604#M5758</link>
      <description>&lt;P&gt;Hi @Stian Arntsen​&amp;nbsp;I think for now databricks does not support notebook run from github action.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 16:41:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10604#M5758</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2023-01-26T16:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Running notebook from another notebook does not work when running notebook from github actions</title>
      <link>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10605#M5759</link>
      <description>&lt;P&gt;It seems that the directory is different under GitHub actions. Not sure what exactly mentioned GitHub actions do and which one it is. Maybe you can share GitHub action used.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 16:44:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10605#M5759</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2023-01-26T16:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Running notebook from another notebook does not work when running notebook from github actions</title>
      <link>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10606#M5760</link>
      <description>&lt;P&gt;I can run other notebooks just fine from github actions. But running a notebook that runs another notebook doesn't seem to work for me.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 20:15:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10606#M5760</guid>
      <dc:creator>Ullsokk</dc:creator>
      <dc:date>2023-01-26T20:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Running notebook from another notebook does not work when running notebook from github actions</title>
      <link>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10607#M5761</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;name: Setup
on: 
  workflow_dispatch:
jobs:
  run-notebooks:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Run a databricks notebook
        uses: databricks/run-notebook@v0
        with:
         local-notebook-path: Setup.sql
         databricks-host: &lt;A href="https://myhost.cloud.databricks.com/" target="test_blank"&gt;https://myhost.cloud.databricks.com/&lt;/A&gt;
         databricks-token: ${{ secrets.DATABRICKS_TOKEN }}
         git-commit: ${{ github.event.pull_request.head.sha }}
         existing-cluster-id : myclusterid&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is the yml file running from github actions. &lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 20:17:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/running-notebook-from-another-notebook-does-not-work-when/m-p/10607#M5761</guid>
      <dc:creator>Ullsokk</dc:creator>
      <dc:date>2023-01-26T20:17:30Z</dc:date>
    </item>
  </channel>
</rss>

