Skip to content

Commit 3e86257

Browse files
authored
Merge pull request #223 from stackql/feature/provider-docs
dbx admonition
2 parents dfbfecc + 3f6b672 commit 3e86257

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

ci-scripts/get-providers-to-deploy.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,20 @@ module.exports = async ({ github, context, core, pathOutput }) => {
4444
//2. use provider to set out, so next step will use those Netlify configs
4545
//3. If it multiple, or updating root, output multiple configs, and loop as matrix in next step
4646
const changedFiles = process.env.CHANGED_FILES ? process.env.CHANGED_FILES.split(' ').filter(Boolean) : undefined
47-
// let globalChange = false;
48-
let globalChange = true;
47+
let globalChange = false;
4948

5049
if(!changedFiles){
5150
throw Error('No changed files found')
5251
}
5352

5453
// Check if any changed file is outside the docs/*-docs/** pattern
55-
// globalChange = changedFiles.some(file => !isMatchRegex(file));
54+
globalChange = changedFiles.some(file => !isMatchRegex(file));
5655

5756
const providers = changedFiles.map(diff => {
5857
if(isMatchRegex(diff)){
5958
return diff.split('/')[1].split('-docs')[0]
6059
}
6160
return null;
62-
// if(!(diff.startsWith('.github')) || !(diff.startsWith('scripts'))) globalChange = true;
63-
// globalChange = false;
64-
// globalChange = true;
6561

6662
}).filter(Boolean)
6763

docs/databricks_account-docs/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
2020

2121
Account-level features, identity and provisioning for Databricks.
2222

23+
:::info
24+
25+
For Databricks workspace operations use the [__`databricks_workspace`__](https://databricks-workspace.stackql.io/providers/databricks_workspace/) provider.
26+
27+
:::
28+
29+
2330
:::info Provider Summary
2431

2532
<div class="row">

docs/databricks_workspace-docs/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
2020

2121
Manage clusters, jobs, notebooks, MLflow and other Databricks workspace resources.
2222

23+
:::info
24+
25+
For Databricks account operations use the [__`databricks_account`__](https://databricks-account.stackql.io/providers/databricks_account/) provider.
26+
27+
:::
28+
29+
2330
:::info Provider Summary
2431

2532
<div class="row">

0 commit comments

Comments
 (0)