We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75a73d3 commit 19f49dbCopy full SHA for 19f49db
scripts/generate-release-notes.bash
@@ -0,0 +1,21 @@
1
+#!/bin/bash
2
+
3
+set -eu
4
+set -o pipefail
5
6
+THIS_FILE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
7
+CI="${THIS_FILE_DIR}/../../wg-app-platform-runtime-ci"
8
+. "$CI/shared/helpers/release-note-helpers.bash"
9
+. "$CI/shared/helpers/git-helpers.bash"
10
+REPO_NAME=$(git_get_remote_name)
11
+REPO_PATH="${THIS_FILE_DIR}/../"
12
+unset THIS_FILE_DIR
13
14
15
+START_REF="${1}";
16
+END_REF="${2}";
17
+GO_MOD_LOCATION="src/code.cloudfoundry.org/go.mod";
18
19
+get_non_bot_commits "${START_REF}" "${END_REF}"
20
+echo ""
21
+display_go_mod_diff "${START_REF}" "${END_REF}" "${GO_MOD_LOCATION}"
0 commit comments