Ullsokk
New Contributor III
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 : myclusterid

This is the yml file running from github actions.