We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to color code my slack message using the 'good' (green) color code. Any idea how can it be called?
I tried the following with no luck:
try1:
from notifiers import get_notifier slack = get_notifier('slack') slack._schema['properties']['attachments']['items']['properties']['color'] = 'good' return slack.notify(message=msg, webhook_url=slack_bot_url)
try2:
from notifiers import get_notifier slack = get_notifier('slack') return slack.notify(message=msg, webhook_url=slack_bot_url, attachments=[{dict(color='good')}])
The text was updated successfully, but these errors were encountered:
Thanks for opening your first issue here! Be sure to follow the issue template! 👋🐞👋
Sorry, something went wrong.
hmm, could you please link to the relevant place in slack docs? Can't seem to find it
slack message formatting api docs Thanks!
I have a branch with some pending changes for v2.0, I'll make sure it works for that version.
liiight
No branches or pull requests
I would like to color code my slack message using the 'good' (green) color code.
Any idea how can it be called?
I tried the following with no luck:
try1:
try2:
The text was updated successfully, but these errors were encountered: