Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,24 @@ Support for this **PROJECT or PRODUCT** is limited to the resources listed above
## License

{% include "../LICENSE" %}

## Get help

Comment on lines +23 to +24
Copy link

Copilot AI Feb 12, 2026

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.

Copilot uses AI. Check for mistakes.
**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)
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Support section above directs users to file feature requests as GitHub Issues (with a template link), but this new "Request a feature" link points to Discussions. Please make the guidance consistent (either update the earlier text to recommend Discussions, or change this link to the feature-request issue template).

Suggested change
- [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 uses AI. Check for mistakes.
- [Share feedback via Microsoft Form](https://forms.office.com/r/uhL6b6tNsi)
- [Submit ideas to Fabric Ideas Portal](https://ideas.fabric.microsoft.com/)

**Need help using the CLI?**

- See [Troubleshooting](./troubleshooting.md) for common problems and solutions
Comment on lines +32 to +34
Copy link

Copilot AI Feb 12, 2026

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.

Suggested change
**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

Copilot uses AI. Check for mistakes.
- Ask questions in [GitHub Discussions](https://github.com/microsoft/fabric-cicd/discussions)
- Connect with the community on [r/MicrosoftFabric](https://www.reddit.com/r/MicrosoftFabric/)
- Join the [Microsoft Developer Community](https://community.fabric.microsoft.com/t5/Developer/bd-p/Developer)

**Need enterprise assistance?**

- Contact your Microsoft account manager
- Open a ticket with the [Fabric Support Team](https://support.fabric.microsoft.com/)
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"
}
}
14 changes: 14 additions & 0 deletions sample/fabric-cicd-demo/fabric-cicd-demo/fabric_items/deploy.py
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>",
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

workspace_id example value ("<YOUR_WORKSPACE_ID>") is not a GUID, so this script will fail validation immediately if someone runs it before editing. Consider using a GUID-shaped placeholder (or workspace_name) so the example runs after only updating credentials/workspace details.

Suggested change
workspace_id="<YOUR_WORKSPACE_ID>",
workspace_id="00000000-0000-0000-0000-000000000000",

Copilot uses AI. Check for mistakes.
repository_directory=str(repo_dir),
# environment="DEV", # optional, but required if you use parameter replacement via parameter.yml
# item_type_in_scope=["Notebook", "DataPipeline", "Environment"], # optional scope
)

publish_all_items(workspace) # 👈 call the function

Loading