Skip to content

Commit

Permalink
Update AL-Go System Files
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Dec 8, 2023
1 parent 7186439 commit 40f9840
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/AL-Go-Settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"NextMajorSchedule": "0 2 * * 0",
"NextMinorSchedule": "0 2 * * 6",
"CurrentSchedule": "0 2 * * 1,2,3,4,5",
"templateSha": "0ba00b8d1a6d916fcdfcb36b0c0736927e780b25"
"templateSha": "3b516ee823bad85bb250fd0f0d609d84a2d5e060"
}
2 changes: 1 addition & 1 deletion .github/workflows/PullRequestHandler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Determine Baseline Workflow Run
id: DetermineBaselineWorkflowRun
if: ${{ fromJson(steps.determineProjectsToBuild.outputs.IsPartialBuild) }}
if: ${{ steps.determineProjectsToBuild.outputs.IsPartialBuild == 'True' }}
uses: mazhelez/AL-Go/Actions/DetermineBaselineWorkflowRun@fix-incremental-build
with:
shell: powershell
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/Troubleshooting.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: 'Troubleshooting'

on:
workflow_dispatch:
inputs:
displayNameOfSecrets:
description: Display the name (not the value) of secrets available to the repository
type: boolean
default: false

permissions:
contents: read
actions: read

defaults:
run:
shell: powershell

env:
ALGoOrgSettings: ${{ vars.ALGoOrgSettings }}
ALGoRepoSettings: ${{ vars.ALGoRepoSettings }}

jobs:
Troubleshooting:
runs-on: [ windows-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true

- name: Troubleshooting
uses: mazhelez/AL-Go/Actions/Troubleshooting@fix-incremental-build
with:
shell: powershell
gitHubSecrets: ${{ toJson(secrets) }}
displayNameOfSecrets: ${{ github.event.inputs.displayNameOfSecrets }}

0 comments on commit 40f9840

Please sign in to comment.