-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
Support Manual approval notification #17
Comments
I believe we already support this through the |
looking at the lambda code and the README I don't see support for this event :( |
Something like this should work: module "codepipeline_notifications" {
source = "kjagiello/codepipeline-slack-notifications/aws"
version = "1.1.3"
name = "codepipeline-notifications"
namespace = "kjagiello"
stage = "sandbox"
slack_url = "https://hooks.slack.com/services/(...)"
slack_channel = "#notifications"
event_type_ids = [
"codepipeline-pipeline-pipeline-execution-failed",
"codepipeline-pipeline-pipeline-execution-canceled",
"codepipeline-pipeline-pipeline-execution-started",
"codepipeline-pipeline-pipeline-execution-resumed",
"codepipeline-pipeline-pipeline-execution-succeeded",
"codepipeline-pipeline-pipeline-execution-superseded",
# Manual approvals
"codepipeline-pipeline-manual-approval-needed",
]
codepipelines = [
aws_codepipeline.example,
]
} |
The function code should be change because the approval event is a little bit different:
As you can see the state, used to determine the color, is always |
I know it's been long overdue, but I have finally found some time to improve the state of approval notifications. See #35. |
Hi! what do you think about the support of
codepipeline-pipeline-manual-approval-needed
event type? In this way can be notified about approval needed. I'm available to code this part.Let me know
cheers
The text was updated successfully, but these errors were encountered: