Skip to content

Commit 37ee978

Browse files
committed
add condition in notify-slack job
1 parent 6ff1828 commit 37ee978

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/e2e-suite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ jobs:
234234
process-upload-report:
235235
runs-on: ubuntu-latest
236236
needs: [integration_tests]
237-
if: always() && github.repository == 'linode/linode-cli' # Run even if integration tests fail and only on main repository
237+
if: always() # && github.repository == 'linode/linode-cli' # Run even if integration tests fail and only on main repository
238238
outputs:
239239
summary: ${{ steps.set-test-summary.outputs.summary }}
240240

@@ -291,8 +291,8 @@ jobs:
291291
292292
notify-slack:
293293
runs-on: ubuntu-latest
294-
needs: [integration_tests]
295-
if: ${{ (success() || failure()) && github.repository == 'linode/linode-cli' }} # Run even if integration tests fail and only on main repository
294+
needs: [integration_tests, process-upload-report]
295+
if: ${{ (success() || failure()) }} #&& github.repository == 'linode/linode-cli' }} # Run even if integration tests fail and only on main repository
296296

297297
steps:
298298
- name: Notify Slack

0 commit comments

Comments
 (0)