generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 973 Bytes
/
action.yml
File metadata and controls
24 lines (24 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: 'Databricks Deploy'
description: 'A Github action to deploy in Databricks repos'
author: 'sleepy0owl'
inputs:
databricks-host:
description: >
Hostname of the Databricks workspace in which to deploy the latest code. If unspecified, the hostname
will be inferred from the DATABRICKS_HOST environment variable. Either this parameter or the
DATABRICKS_HOST environment variable must be set.
require: false
databricks-repo-id:
description: >
Repo Id of the Databricks repo. If unspecified, the repo-id will be inferred from the DATABRICKS_REPO_ID environment variable.
Either this parameter or the DATABRICKS_REPO_ID environment variable must be set.
require: false
databricks-repo-branch:
description: >
The branch of the Databricks repo-id mentioned above. This action will update the mentioned branch.
require: true
databricks-token:
require: true
runs:
using: 'node16'
main: 'dist/index.js'