Skip to content

Commit 5804567

Browse files
For fun, we shall run it again (#110)
* Reorder Send Changelog PR step in deployment workflow Moved the Send Changelog PR step to ensure it runs after setting the Git configuration. This change improves the workflow's reliability by ensuring that the necessary Git settings are applied before attempting to create a changelog pull request. Thank you! * Remove extra blank line in Set-FabricConfig.ps1 This change cleans up the formatting of the Set-FabricConfig.ps1 file by removing an unnecessary blank line. This improves readability and maintains consistency in the code style. Thank you! * Update Git config for automated deployment Changed the Git user email and name in the deployment workflow to reflect the automated process. This ensures that commits made during the deployment are attributed correctly. Thank you!
1 parent 538472f commit 5804567

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy-module.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ jobs:
8181
GalleryApiToken: ${{ secrets.GalleryApiToken }}
8282
- name: Set Git config
8383
run: |
84-
git config --local user.email "actions@github.com"
85-
git config --local user.name "Github Actions"
84+
git config --local user.email "jpomfret7@gmail.com"
85+
git config --local user.name "Automated Jess Did this"
8686
- name: Merge main -> develop
8787
# This step merges the main branch into the develop branch after a successful deployment. This ensures that the develop branch includes the tag for the latest release.
8888
run: |

source/Public/Config/Set-FabricConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Registers the specified Fabric Data Warehouse configuration for use with all fun
2525
.EXAMPLE
2626
PS> Set-FabricConfig -WorkspaceGUID 'GUID-GUID-GUID-GUID' -DataWarehouseGUID 'GUID-GUID-GUID-GUID' -SkipPersist
2727
28-
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.
28+
Registers the specified Fabric Data Warehouse configuration for use with all functions in the PSFabricTools module - but it does not persist the values, only uses them for the current session.
2929
#>
3030

3131
function Set-FabricConfig {

0 commit comments

Comments
 (0)