diff --git a/.github/workflows/PullRequestHandler.yaml b/.github/workflows/PullRequestHandler.yaml index b99f959648..7265344a84 100644 --- a/.github/workflows/PullRequestHandler.yaml +++ b/.github/workflows/PullRequestHandler.yaml @@ -75,6 +75,19 @@ jobs: parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} getEnvironments: '*' + - name: TEST + id: test + env: + testsecret: ${{ secrets.TESTSECRET }} + eventname: ${{ github.event.name }} + run: | + Write-Host "$env:eventname" + Write-Host "$env:testsecret" + $sec = ($env:testsecret).ToLower() + $sec += "-ABC" + Write-Host $sec + + - name: Determine Workflow Depth id: DetermineWorkflowDepth run: | diff --git a/Modules/System/Auto Format/src/AutoFormat.Codeunit.al b/Modules/System/Auto Format/src/AutoFormat.Codeunit.al index d14ee9274a..dec49e6b13 100644 --- a/Modules/System/Auto Format/src/AutoFormat.Codeunit.al +++ b/Modules/System/Auto Format/src/AutoFormat.Codeunit.al @@ -12,7 +12,7 @@ codeunit 45 "Auto Format" SingleInstance = true; InherentEntitlements = X; InherentPermissions = X; - + var AutoFormatImpl: Codeunit "Auto Format Impl."; @@ -82,4 +82,4 @@ codeunit 45 "Auto Format" internal procedure OnReadRounding(var AmountRoundingPrecision: Decimal) begin end; -} \ No newline at end of file +}