We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45760a8 commit 30e01dcCopy full SHA for 30e01dc
2 files changed
.github/workflows/tests.yml
@@ -86,7 +86,7 @@ jobs:
86
name: Regression notifications
87
runs-on: ubuntu-latest
88
needs: build
89
- if: ${{ !success() && github.ref == 'refs/heads/main' && github.event_name != 'workflow_dispatch' }}
+ if: ${{ !success() }}
90
steps:
91
- name: Send notifications of failing tests
92
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
tests/slack_bolt/context/test_say.py
@@ -22,7 +22,7 @@ def teardown_method(self):
22
def test_say(self):
23
say = Say(client=self.web_client, channel="C111")
24
response: SlackResponse = say(text="Hi there!")
25
- assert response.status_code == 200
+ assert response.status_code == 404
26
27
def test_say_unfurl_options(self):
28
0 commit comments