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 6a027d3 commit aec4d87Copy full SHA for aec4d87
scripts/changelog-link-pr.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+# Copyright (C) 2022 Intel Corporation
3
+# SPDX-License-Identifier: BSD-3-Clause
4
+
5
+# Read changelog entries from standard input and print each
6
+# occurrence of a pull-request reference, e.g., [#123] to
7
+# standard output, along with the link to the pull request.
8
9
+set -eu -o pipefail
10
11
+grep -o '\[#[0-9]\+\]' | sed 's,\[#\([0-9]\+\)\],&: https://github.com/intel/fpga-runtime-for-opencl/pull/\1,' | sort -V
0 commit comments