Skip to content

Commit

Permalink
dummy job
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-gnusov committed Jan 23, 2025
1 parent 475f4a2 commit a667713
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/robot-ui-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
run: exit 1

- name: Retry Failed Step
if: steps.failed_step.outcome != 'success'
if: always() && steps.failed_step.outcome != 'success'
run: echo "Retry Failed Step"

- name: Notify Slack on Failure
if: failure() == false && github.event_name == env.SCHEDULE_EVENT_NAME
if: failure() && github.event_name == 'workflow_dispatch'
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
Expand All @@ -48,7 +48,7 @@ jobs:
slack-message: "❌Scheduled ${{github.job}} on the ${{ github.repository }} repository failed. Manual intervention is required! \n*Details*: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"

- name: Notify Slack on Success
if: failure() && github.event_name == env.SCHEDULE_EVENT_NAME
if: failure() == false && github.event_name == 'workflow_dispatch'
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
Expand Down

0 comments on commit a667713

Please sign in to comment.