File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 5
5
workflows : ["KTU Bot Test Deploy"]
6
6
types :
7
7
- completed
8
- push :
9
- branches :
10
- - " prod"
11
8
12
9
jobs :
13
10
prod_deploy :
14
11
runs-on : ubuntu-latest
15
- if : github.event.workflow_run.conclusion == 'success' || github.event_name == 'push'
12
+ if : github.event.workflow_run.conclusion == 'success'
16
13
17
14
steps :
18
15
- name : Checkout repository
Original file line number Diff line number Diff line change 5
5
workflows : ["CI"]
6
6
types :
7
7
- completed
8
- push :
9
- branches :
10
- - " prod"
11
8
pull_request :
12
9
branches :
13
10
- " prod"
14
11
15
12
jobs :
16
13
test_deploy :
17
14
runs-on : ubuntu-latest
18
- if : github.event.workflow_run.conclusion == 'success' || github.event_name == 'push' || (github.event_name == 'pull_request' && github.base_ref == 'prod')
15
+ if : github.event.workflow_run.conclusion == 'success' || (github.event_name == 'pull_request' && github.base_ref == 'prod')
19
16
steps :
20
17
- name : Checkout repository
21
18
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments