Skip to content

Commit e4333c9

Browse files
committed
testing
1 parent 320db50 commit e4333c9

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/prod-deploy.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@ on:
55
workflows: ["KTU Bot Test Deploy"]
66
types:
77
- completed
8-
push:
9-
branches:
10-
- "prod"
118

129
jobs:
1310
prod_deploy:
1411
runs-on: ubuntu-latest
15-
if: github.event.workflow_run.conclusion == 'success' || github.event_name == 'push'
12+
if: github.event.workflow_run.conclusion == 'success'
1613

1714
steps:
1815
- name: Checkout repository

.github/workflows/test-deploy.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,14 @@ on:
55
workflows: ["CI"]
66
types:
77
- completed
8-
push:
9-
branches:
10-
- "prod"
118
pull_request:
129
branches:
1310
- "prod"
1411

1512
jobs:
1613
test_deploy:
1714
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')
1916
steps:
2017
- name: Checkout repository
2118
uses: actions/checkout@v4

0 commit comments

Comments
 (0)