aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/changelog-links.sh
diff options
context:
space:
mode:
authorJake <jake@gnu.space>2017-06-05 20:54:15 +0000
committerJake <jake@gnu.space>2017-06-05 20:54:15 +0000
commit8904b9d035e113e0c052acfed35c4ab5a6d6973b (patch)
tree942866927d945dcbe16028d682d73758a871acea /scripts/changelog-links.sh
downloadterraform-provider-statuscake-8904b9d035e113e0c052acfed35c4ab5a6d6973b.tar.gz
terraform-provider-statuscake-8904b9d035e113e0c052acfed35c4ab5a6d6973b.tar.zst
terraform-provider-statuscake-8904b9d035e113e0c052acfed35c4ab5a6d6973b.zip
initial commit
Diffstat (limited to 'scripts/changelog-links.sh')
-rwxr-xr-xscripts/changelog-links.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/scripts/changelog-links.sh b/scripts/changelog-links.sh
new file mode 100755
index 0000000..401e440
--- /dev/null
+++ b/scripts/changelog-links.sh
@@ -0,0 +1,31 @@
1#!/bin/bash
2
3# This script rewrites [GH-nnnn]-style references in the CHANGELOG.md file to
4# be Markdown links to the given github issues.
5#
6# This is run during releases so that the issue references in all of the
7# released items are presented as clickable links, but we can just use the
8# easy [GH-nnnn] shorthand for quickly adding items to the "Unrelease" section
9# while merging things between releases.
10
11set -e
12
13if [[ ! -f CHANGELOG.md ]]; then
14 echo "ERROR: CHANGELOG.md not found in pwd."
15 echo "Please run this from the root of the terraform provider repository"
16 exit 1
17fi
18
19if [[ `uname` == "Darwin" ]]; then
20 echo "Using BSD sed"
21 SED="sed -i.bak -E -e"
22else
23 echo "Using GNU sed"
24 SED="sed -i.bak -r -e"
25fi
26
27PROVIDER_URL="https:\/\/github.com\/terraform-providers\/terraform-provider-statuscake"
28
29$SED "s/GH-([0-9]+)/\[#\1\]\($PROVIDER_URL\/\1\)/g" -e 's/\[\[#(.+)([0-9])\)]$/(\[#\1\2))/g' CHANGELOG.md
30
31rm CHANGELOG.md.bak