Skip to content

Commit 8419201

Browse files
committed
Chore: Enable manual trigger of the CIBuild action
1 parent 7eadba6 commit 8419201

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/CIBuild.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ on:
1616
branches: [ main ]
1717
schedule:
1818
- cron: '18 7 * * 6'
19+
workflow_dispatch:
20+
inputs:
21+
environment:
22+
description: 'Environment to run tests against'
23+
type: environment
24+
required: true
1925

2026
jobs:
2127
analyze:
@@ -36,7 +42,7 @@ jobs:
3642

3743
# Initializes the CodeQL tools for scanning.
3844
- name: Initialize CodeQL
39-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@v3
4046
with:
4147
languages: ${{ matrix.language }}
4248
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -69,4 +75,4 @@ jobs:
6975
run: xvfb-run ./gradlew build
7076

7177
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
78+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)