-
Notifications
You must be signed in to change notification settings - Fork 124
adding demo and help info #809
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -19,3 +19,24 @@ Support for this **PROJECT or PRODUCT** is limited to the resources listed above | |||||||||||||
| ## License | ||||||||||||||
|
|
||||||||||||||
| {% include "../LICENSE" %} | ||||||||||||||
|
|
||||||||||||||
| ## Get help | ||||||||||||||
|
|
||||||||||||||
| **Found a bug or have a suggestion?** | ||||||||||||||
|
|
||||||||||||||
| - [Report an issue](https://github.com/microsoft/fabric-cicd/issues) | ||||||||||||||
| - [Request a feature](https://github.com/microsoft/fabric-cicd/discussions) | ||||||||||||||
|
||||||||||||||
| - [Request a feature](https://github.com/microsoft/fabric-cicd/discussions) | |
| - [Request a feature](https://github.com/microsoft/fabric-cicd/issues/new?template=2-feature.yml) |
Copilot
AI
Feb 12, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This repository doesn’t appear to expose a CLI entrypoint (no project.scripts / console_scripts), so "Need help using the CLI?" is likely misleading here. Consider rewording this section to refer to using the library / deployment scripts instead, or link to the actual CLI docs if one exists elsewhere.
| **Need help using the CLI?** | |
| - See [Troubleshooting](./troubleshooting.md) for common problems and solutions | |
| **Need help using fabric-cicd?** | |
| - See [Troubleshooting](./troubleshooting.md) for common usage problems and solutions |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/fabric/gitIntegration/platformProperties/2.0.0/schema.json", | ||
| "metadata": { | ||
| "type": "Lakehouse", | ||
| "displayName": "Contoso_LH" | ||
| }, | ||
| "config": { | ||
| "version": "2.0", | ||
| "logicalId": "ffe59590-8959-bbeb-4814-0a062fd1dcfb" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/fabric/gitIntegration/platformProperties/2.0.0/schema.json", | ||
| "metadata": { | ||
| "type": "Notebook", | ||
| "displayName": "Notebook_1" | ||
| }, | ||
| "config": { | ||
| "version": "2.0", | ||
| "logicalId": "6d4f537c-e9ea-b142-4d5f-824572146099" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,14 @@ | ||||||
| from pathlib import Path | ||||||
| from fabric_cicd import FabricWorkspace, publish_all_items # 👈 import the function | ||||||
|
|
||||||
| repo_dir = Path(__file__).resolve().parent # ...\fabric_items | ||||||
|
|
||||||
| workspace = FabricWorkspace( | ||||||
| workspace_id="<YOUR_WORKSPACE_ID>", | ||||||
|
||||||
| workspace_id="<YOUR_WORKSPACE_ID>", | |
| workspace_id="00000000-0000-0000-0000-000000000000", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR metadata still contains the template text and the title/description are not linked to an issue as required by the repo contribution guidelines (title format like "Fixes #123 - ..."). Please update the PR title and description to reference the appropriate issue before merging.