Skip to content

Commit c49e025

Browse files
committed
Update AL-Go System Files
1 parent 984c043 commit c49e025

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

.github/AL-Go-Settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"type": "PTE",
33
"templateUrl": "https://github.com/mazhelez/AL-Go@fix-incremental-build",
44
"repoName": "Ååå",
5-
"templateSha": "be9250487b32dac0232aafe5a7f99bbbb6fe7de7"
5+
"templateSha": "3b516ee823bad85bb250fd0f0d609d84a2d5e060"
66
}

.github/workflows/PullRequestHandler.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Determine Baseline Workflow Run
8383
id: DetermineBaselineWorkflowRun
84-
if: ${{ fromJson(steps.determineProjectsToBuild.outputs.IsPartialBuild) }}
84+
if: ${{ steps.determineProjectsToBuild.outputs.IsPartialBuild == 'True' }}
8585
uses: mazhelez/AL-Go/Actions/DetermineBaselineWorkflowRun@fix-incremental-build
8686
with:
8787
shell: powershell
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: 'Troubleshooting'
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
displayNameOfSecrets:
7+
description: Display the name (not the value) of secrets available to the repository
8+
type: boolean
9+
default: false
10+
11+
permissions:
12+
contents: read
13+
actions: read
14+
15+
defaults:
16+
run:
17+
shell: powershell
18+
19+
env:
20+
ALGoOrgSettings: ${{ vars.ALGoOrgSettings }}
21+
ALGoRepoSettings: ${{ vars.ALGoRepoSettings }}
22+
23+
jobs:
24+
Troubleshooting:
25+
runs-on: [ windows-latest ]
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@v3
29+
with:
30+
lfs: true
31+
32+
- name: Troubleshooting
33+
uses: mazhelez/AL-Go/Actions/Troubleshooting@fix-incremental-build
34+
with:
35+
shell: powershell
36+
gitHubSecrets: ${{ toJson(secrets) }}
37+
displayNameOfSecrets: ${{ github.event.inputs.displayNameOfSecrets }}

0 commit comments

Comments
 (0)