forked from microsoft/ALAppExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 920 Bytes
/
Troubleshooting.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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:
actions: read
contents: read
defaults:
run:
shell: powershell
env:
ALGoOrgSettings: ${{ vars.ALGoOrgSettings }}
ALGoRepoSettings: ${{ vars.ALGoRepoSettings }}
jobs:
Troubleshooting:
runs-on: [ windows-latest ]
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
lfs: true
- name: Troubleshooting
uses: microsoft/AL-Go/Actions/Troubleshooting@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
with:
shell: powershell
gitHubSecrets: ${{ toJson(secrets) }}
displayNameOfSecrets: ${{ github.event.inputs.displayNameOfSecrets }}