How can we capture the name of the pipeline?
Currently we are doing something like this. But cannot find a way to grab the "custom:pipeline-name"
I cannot believe this is not a native feature...
```
- step: &slack-notification
name: slack-notification
script:
# from the aws-mapping step
- SLACK_WEBHOOK_URL=$(cat ./SLACK_WEBHOOK_URL.txt)
- pipe: atlassian/slack-notify:2.3.1
variables:
WEBHOOK_URL: $SLACK_WEBHOOK_URL
MESSAGE: '":point_right: \`$BITBUCKET_TRIGGERER_USERNAME\` triggered \`$BITBUCKET_PIPE_TYPE\` for \`$EnvironmentName\` from branch \`$BITBUCKET_BRANCH\`"'
```