Danger includes characters that break the changelog terminal command
When using Danger to suggest a changelog entry if one is missing, it includes backticks in its suggested terminal command to add the changelog. This unfortunately causes issues in bash as it breaks the script - it escapes out what's in the backticks.
What happens:
Charlies-MacBook-Pro:gitlab charlieablett$ bin/changelog -m 20610 "Fix
group_epic_link_pathmethod" bash: group_epic_link_path: command not found
What I expected to happen: it uses some non-escaping character instead of backticks, which are not uncommon in MR titles (e.g. single quotes ').
Charlies-MacBook-Pro:gitlab charlieablett$ bin/changelog -m 20610 "Fix 'group_epic_link_path' method" bash: group_epic_link_path: command not found