Skip to content

Commit 2e647c7

Browse files
committed
testing
1 parent 320db50 commit 2e647c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/prod-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
prod_deploy:
1414
runs-on: ubuntu-latest
15-
if: github.event.workflow_run.conclusion == 'success' || github.event_name == 'push'
15+
if: github.event.workflow_run.conclusion == 'success'
1616

1717
steps:
1818
- name: Checkout repository

.github/workflows/test-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
test_deploy:
1717
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')
18+
if: github.event.workflow_run.conclusion == 'success' || (github.event_name == 'pull_request' && github.base_ref == 'prod')
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@v4

0 commit comments

Comments
 (0)