File tree 4 files changed +63
-1
lines changed
4 files changed +63
-1
lines changed Original file line number Diff line number Diff line change 12
12
name : " CodeQL"
13
13
14
14
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
15
30
push :
16
31
branches : [ "*" ]
17
32
pull_request :
Original file line number Diff line number Diff line change 8
8
9
9
name : Upload Python 🐍 distributions 📦 to TestPyPI
10
10
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
12
27
13
28
permissions :
14
29
contents : read
Original file line number Diff line number Diff line change 4
4
name : Python package
5
5
6
6
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
7
22
push :
8
23
branches : [ "*" ]
9
24
pull_request :
10
25
branches : [ "*" ]
26
+ schedule :
27
+ - cron : ' 45 23 * * 0'
11
28
12
29
jobs :
13
30
build :
Original file line number Diff line number Diff line change 9
9
name : Upload Python Package
10
10
11
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
12
27
release :
13
28
types : [published]
14
29
You can’t perform that action at this time.
0 commit comments