Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/deploy-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,6 @@ jobs:
env:
GitHubToken: ${{ secrets.GitHubToken }}
GalleryApiToken: ${{ secrets.GalleryApiToken }}
- name: Send Changelog PR
shell: pwsh
run: ./build.ps1 -tasks Create_ChangeLog_GitHub_PR
env:
GitHubToken: ${{ secrets.GitHubToken }}
GalleryApiToken: ${{ secrets.GalleryApiToken }}
ReleaseBranch: main
MainGitBranch: main
- name: Set Git config
run: |
git config --local user.email "actions@github.com"
Expand All @@ -100,3 +92,11 @@ jobs:
git pull
git merge --no-ff main -m "Auto-merge main back to dev"
git push
- name: Send Changelog PR
shell: pwsh
run: ./build.ps1 -tasks Create_ChangeLog_GitHub_PR
env:
GitHubToken: ${{ secrets.GitHubToken }}
GalleryApiToken: ${{ secrets.GalleryApiToken }}
ReleaseBranch: main
MainGitBranch: main
1 change: 0 additions & 1 deletion source/Public/Config/Set-FabricConfig.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Registers the specified Fabric Data Warehouse configuration for use with all fun
PS> Set-FabricConfig -WorkspaceGUID 'GUID-GUID-GUID-GUID' -DataWarehouseGUID 'GUID-GUID-GUID-GUID' -SkipPersist

Registers the specified Fabric Data Warehouse configuration for use with all functions in the PSFabricTools module - but does not persist the values, only uses them for the current session.

#>

function Set-FabricConfig {
Expand Down
Loading