Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2023 12:17 PM
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: https://myhost.cloud.databricks.com/
databricks-token: ${{ secrets.DATABRICKS_TOKEN }}
git-commit: ${{ github.event.pull_request.head.sha }}
existing-cluster-id : myclusteridThis is the yml file running from github actions.