Skip to content

Commit

Permalink
chore(cd): skip send slack message for daily build failure (#11466)
Browse files Browse the repository at this point in the history
Github doesn't treat the author of commit as actor to scheduled workflow run, so sending slack message doesn't make sense.
  • Loading branch information
fffonion authored Aug 29, 2023
1 parent 17c971b commit 4618c4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-and-tests-fail-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
notify_failure:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
if: ${{ github.event.workflow_run.conclusion == 'failure' || github.event.workflow_run.event != "schedule" }}
steps:
- name: Generate Slack Payload
id: generate-payload
Expand Down

1 comment on commit 4618c4d

@khcp-gha-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:4618c4d0237c41e74c2072849028c2b2f016a53f
Artifacts available https://github.com/Kong/kong/actions/runs/6009866402

Please sign in to comment.