ci: try to fix again slack notification

- advance on https://github.com/kestra-io/kestra/issues/11905
This commit is contained in:
Roman Acevedo
2025-10-10 13:44:47 +02:00
parent 91c38f1626
commit f41db3d1ed

View File

@@ -70,7 +70,7 @@ jobs:
needs: [publish-develop-docker, publish-develop-maven]
if: always()
steps:
- run: echo "debug ${{github.event.pull_request.head.repo.full_name}} and ${{github.repository}}"
- run: echo "debug ${{github.repository}} ${{needs.backend-tests}} ${{needs.backend-tests.result}}"
- name: Trigger EE Workflow
uses: peter-evans/repository-dispatch@v4
if: github.ref == 'refs/heads/develop' && needs.backend-tests.result == 'success'
@@ -81,7 +81,7 @@ jobs:
# Slack
- name: Slack - Notification
if: ${{ failure() && github.event.pull_request.head.repo.full_name == github.repository && (github.ref == 'refs/heads/develop') }}
if: ${{ failure() && github.repository == 'kestra-io/kestra' && (github.ref == 'refs/heads/develop') }}
uses: kestra-io/actions/composite/slack-status@main
with:
webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}