Merge "Add job to automatically announce lf releases"
[releng/global-jjb.git] / shell / release-announce.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2018 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11
12 PROJECT="${GERRIT_PROJECT#releng/}"  # For releng projects strip the prefix
13 TAG_NAME="${GERRIT_REFNAME#refs/tags/}"
14
15 set -eux -o pipefail
16
17 mail_opts=()
18 mail_opts+=("-r" "LF Releng <lf-releng@lists.linuxfoundation.org>")
19 mail_opts+=("-s" "$PROJECT $TAG_NAME released")
20 mail_opts+=("lf-releng@lists.linuxfoundation.org")
21
22 mail "${mail_opts[@]}" << EOF
23 Hi Everyone,
24
25 $PROJECT $TAG_NAME is released. Thanks to everyone who contributed
26 to this release. Release notes are available online at:
27
28 https://docs.releng.linuxfoundation.org/projects/$PROJECT/en/latest/release-notes.html#${TAG_NAME}
29
30 Cheers,
31 LF Releng
32 EOF