Skip to content

Commit 8e0c3c2

Browse files
authored
Enabled Manual trigger for workflow dispatch
1 parent 6020fcc commit 8e0c3c2

File tree

4 files changed

+63
-1
lines changed

4 files changed

+63
-1
lines changed

.github/workflows/codeql.yml

+15
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,21 @@
1212
name: "CodeQL"
1313

1414
on:
15+
workflow_dispatch:
16+
inputs:
17+
logLevel:
18+
description: 'Log level'
19+
required: true
20+
default: 'warning'
21+
type: choice
22+
options:
23+
- info
24+
- warning
25+
- debug
26+
tags:
27+
description: 'manual-trigger'
28+
required: false
29+
type: boolean
1530
push:
1631
branches: [ "*" ]
1732
pull_request:

.github/workflows/publish-to-test-pypi.yml

+16-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,22 @@
88

99
name: Upload Python 🐍 distributions 📦 to TestPyPI
1010

11-
on: push
11+
on:
12+
workflow_dispatch:
13+
inputs:
14+
logLevel:
15+
description: 'Log level'
16+
required: true
17+
default: 'warning'
18+
type: choice
19+
options:
20+
- info
21+
- warning
22+
- debug
23+
tags:
24+
description: 'manual-trigger'
25+
required: false
26+
type: boolean
1227

1328
permissions:
1429
contents: read

.github/workflows/python-package.yml

+17
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,27 @@
44
name: Python package
55

66
on:
7+
workflow_dispatch:
8+
inputs:
9+
logLevel:
10+
description: 'Log level'
11+
required: true
12+
default: 'warning'
13+
type: choice
14+
options:
15+
- info
16+
- warning
17+
- debug
18+
tags:
19+
description: 'manual-trigger'
20+
required: false
21+
type: boolean
722
push:
823
branches: [ "*" ]
924
pull_request:
1025
branches: [ "*" ]
26+
schedule:
27+
- cron: '45 23 * * 0'
1128

1229
jobs:
1330
build:

.github/workflows/python-publish.yml

+15
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,21 @@
99
name: Upload Python Package
1010

1111
on:
12+
workflow_dispatch:
13+
inputs:
14+
logLevel:
15+
description: 'Log level'
16+
required: true
17+
default: 'warning'
18+
type: choice
19+
options:
20+
- info
21+
- warning
22+
- debug
23+
tags:
24+
description: 'manual-trigger'
25+
required: false
26+
type: boolean
1227
release:
1328
types: [published]
1429

0 commit comments

Comments
 (0)