Skip to content

Commit 31cf736

Browse files
committed
Add Enable logging workflow checkbox
1 parent f5f794a commit 31cf736

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
on:
22
workflow_dispatch:
3+
inputs:
4+
enable_debug:
5+
description: "Enable logging"
6+
required: false
7+
type: boolean
8+
default: false
39

410
permissions:
511
contents: read
@@ -29,6 +35,9 @@ jobs:
2935
runs-on: ${{ matrix.os }}
3036
steps:
3137
- uses: GitHubSecurityLab/actions-permissions/monitor@main
38+
with:
39+
debug: ${{ github.event.inputs.enable_debug }}
40+
3241
- uses: actions/checkout@v4
3342
with:
3443
ref: ${{ github.ref }}

0 commit comments

Comments
 (0)