Skip to content

Commit 4d95898

Browse files
authored
Merge pull request #67 from dataplat/feature/changelog
So that we use the secret :-( Sorry Jess
2 parents 30a4f99 + 3cb37f2 commit 4d95898

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/deploy-preview-module.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ env:
1919
testResultFolderName: testResults
2020

2121
name: Deploy Preview Module
22+
permissions:
23+
contents: write
24+
pull-requests: write
25+
actions: write
26+
checks: write
27+
deployments: write
28+
2229
# This workflow is triggered on push to the develop branch and deploys the module to the PowerShell Gallery as a preview version.
2330
jobs:
2431
Build_Stage_Package_Module:
@@ -70,7 +77,7 @@ jobs:
7077
shell: pwsh
7178
run: ./build.ps1 -tasks publish
7279
env:
73-
GitHubToken: ${{ secrets.GitHubToken }}
80+
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
7481
GalleryApiToken: ${{ secrets.GalleryApiToken }}
7582
ReleaseBranch: develop
7683
MainGitBranch: develop

source/FabricTools.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ RequiredModules = @(
6161
@{ ModuleName = 'Az.Resources' ; ModuleVersion = '6.15.1' }
6262
)
6363

64-
# Assemblies that must be loaded prior to importing this module
64+
# Assemblies that must be loaded prior to importing this module.
6565
# RequiredAssemblies = @()
6666

6767
# Script files (.ps1) that are run in the caller's environment prior to importing this module.

0 commit comments

Comments
 (0)