patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Ju-Hyoung Lee <juhlee@microsoft.com>
To: Kevin Traynor <ktraynor@redhat.com>,
	"stable@dpdk.org" <stable@dpdk.org>,
	 "bluca@debian.org" <bluca@debian.org>,
	"thomas@monjalon.net" <thomas@monjalon.net>,
	Abhishek Marathe <Abhishek.Marathe@microsoft.com>
Cc: Akhil Goyal <akhil.goyal@nxp.com>,
	Ali Alnubani <alialnu@mellanox.com>,
	David Christensen <drc@linux.vnet.ibm.com>,
	Hemant Agrawal <hemant.agrawal@nxp.com>,
	Ian Stokes <ian.stokes@intel.com>,
	Jerin Jacob <jerinj@marvell.com>,
	John McNamara <john.mcnamara@intel.com>,
	Pei Zhang <pezhang@redhat.com>,
	"yuan.peng@intel.com" <yuan.peng@intel.com>,
	Raslan Darawsheh <rasland@mellanox.com>,
	"benjamin.walker@intel.com" <benjamin.walker@intel.com>,
	"qian.q.xu@intel.com" <qian.q.xu@intel.com>,
	"pingx.yu@intel.com" <pingx.yu@intel.com>,
	"zhaoyan.chen@intel.com" <zhaoyan.chen@intel.com>,
	Ju-Hyoung Lee <juhlee@microsoft.com>
Subject: Re: [dpdk-stable] [PATCH v2] validation-contacts: add validation-contacts file
Date: Wed, 18 Sep 2019 15:58:50 +0000	[thread overview]
Message-ID: <MW2PR2101MB0986A99D481163B51F5A9971DA8E0@MW2PR2101MB0986.namprd21.prod.outlook.com> (raw)
In-Reply-To: <20190918101013.6076-1-ktraynor@redhat.com>

Hello @Kevin Traynor

Can you please add @Abhishek Marathe for Microsoft Azure DPDK validation?
Thanks

Ju            

-----Original Message-----
From: Kevin Traynor <ktraynor@redhat.com> 
Sent: Wednesday, September 18, 2019 3:10 AM
To: stable@dpdk.org; bluca@debian.org; thomas@monjalon.net
Cc: Kevin Traynor <ktraynor@redhat.com>; Akhil Goyal <akhil.goyal@nxp.com>; Ali Alnubani <alialnu@mellanox.com>; David Christensen <drc@linux.vnet.ibm.com>; Hemant Agrawal <hemant.agrawal@nxp.com>; Ian Stokes <ian.stokes@intel.com>; Jerin Jacob <jerinj@marvell.com>; John McNamara <john.mcnamara@intel.com>; Ju-Hyoung Lee <juhlee@microsoft.com>; Pei Zhang <pezhang@redhat.com>; yuan.peng@intel.com; Raslan Darawsheh <rasland@mellanox.com>; benjamin.walker@intel.com; qian.q.xu@intel.com; pingx.yu@intel.com; zhaoyan.chen@intel.com
Subject: [PATCH v2] validation-contacts: add validation-contacts file

Add file with list of people who are involved in validation of LTS/stable releases. This is used by 4-final-review to add these people to the mail announcing new Release Candidates.

It can also be used as a list of contacts to highlight any other relevant items, like test reports etc.

Cc: Akhil Goyal <akhil.goyal@nxp.com>
Cc: Ali Alnubani <alialnu@mellanox.com>
Cc: David Christensen <drc@linux.vnet.ibm.com>
Cc: Hemant Agrawal <hemant.agrawal@nxp.com>
Cc: Ian Stokes <ian.stokes@intel.com>
Cc: Jerin Jacob <jerinj@marvell.com>
Cc: John McNamara <john.mcnamara@intel.com>
Cc: Ju-Hyoung Lee <juhlee@microsoft.com>
Cc: Kevin Traynor <ktraynor@redhat.com>
Cc: Luca Boccassi <bluca@debian.org>
Cc: Pei Zhang <pezhang@redhat.com>
Cc: yuan.peng@intel.com
Cc: Raslan Darawsheh <rasland@mellanox.com>
Cc: Thomas Monjalon <thomas@monjalon.net>
Cc: benjamin.walker@intel.com
Cc: qian.q.xu@intel.com
Cc: pingx.yu@intel.com
Cc: zhaoyan.chen@intel.com
Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
Acked-by: Luca Boccassi <bluca@debian.org>

---

Please note, I compiled this list from correspondances during stable releases and discussions at the DPDK Release meeting. It is expected to be very low traffic. If anyone wants to be removed/added please reply.

v2: Update Jerin's entry. Add Ping and Zhaoyan. Add ack
---
 4-final-review      | 17 ++++++++++++++---
 README              |  4 +++-
 validation-contacts | 18 ++++++++++++++++++
 3 files changed, 35 insertions(+), 4 deletions(-)  create mode 100644 validation-contacts

diff --git a/4-final-review b/4-final-review index 387bce9..5041564 100755
--- a/4-final-review
+++ b/4-final-review
@@ -49,10 +49,21 @@ get_shortlog()
 }
 
+get_cc_val_list()
+{
+	cc_val_list="./validation-contacts"
+	while read line; do
+		echo "Cc: $line"
+	done <<< "$(cat $cc_val_list | sort | uniq)"
+
+}
+
 compose_final_review_note()
 {
+echo "Subject: $(describe_release) patches review and test"
+echo "To: stable@dpdk.org"
+echo "Cc: dev@dpdk.org"
+get_cc_val_list
+
 	cat << EOF
-Subject: $(describe_release) patches review and test
-To: dpdk stable <stable@dpdk.org>
-Cc: dev@dpdk.org
 
 Hi all,
diff --git a/README b/README
index 5eaefd2..4252285 100644
--- a/README
+++ b/README
@@ -122,5 +122,7 @@ but also have links to the tarballs.
 The usage is simple, just time the command, it then will generate an  email with the notification content. What you need to so it to edit it -when necessary (say, leaving more time for review) and send it out.
+when necessary (say, leaving more time for review) and send it out. The 
+Cc list will be populated with people who are involved in stable 
+release validation and listed in the validation-contacts file.
 
 At this point the vendors who have commited to test the release should do diff --git a/validation-contacts b/validation-contacts new file mode 100644 index 0000000..f04df80
--- /dev/null
+++ b/validation-contacts
@@ -0,0 +1,18 @@
+Pei Zhang <pezhang@redhat.com>
+Raslan Darawsheh <rasland@mellanox.com> qian.q.xu@intel.com Ju-Hyoung 
+Lee <juhlee@microsoft.com> Ian Stokes <ian.stokes@intel.com> Ali 
+Alnubani <alialnu@mellanox.com> David Christensen 
+<drc@linux.vnet.ibm.com> benjamin.walker@intel.com Thomas Monjalon 
+<thomas@monjalon.net> John McNamara <john.mcnamara@intel.com> Luca 
+Boccassi <bluca@debian.org> Jerin Jacob <jerinj@marvell.com> Hemant 
+Agrawal <hemant.agrawal@nxp.com> Akhil Goyal <akhil.goyal@nxp.com> 
+Kevin Traynor <ktraynor@redhat.com> yuan.peng@intel.com 
+pingx.yu@intel.com zhaoyan.chen@intel.com
--
2.20.1


  reply	other threads:[~2019-09-18 15:58 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-12 15:57 [dpdk-stable] [PATCH] " Kevin Traynor
2019-09-13  9:44 ` Luca Boccassi
2019-09-18 10:10 ` [dpdk-stable] [PATCH v2] " Kevin Traynor
2019-09-18 15:58   ` Ju-Hyoung Lee [this message]
2019-09-20  7:46   ` [dpdk-stable] [PATCH v3] " Kevin Traynor
2019-09-24 19:00     ` Luca Boccassi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=MW2PR2101MB0986A99D481163B51F5A9971DA8E0@MW2PR2101MB0986.namprd21.prod.outlook.com \
    --to=juhlee@microsoft.com \
    --cc=Abhishek.Marathe@microsoft.com \
    --cc=akhil.goyal@nxp.com \
    --cc=alialnu@mellanox.com \
    --cc=benjamin.walker@intel.com \
    --cc=bluca@debian.org \
    --cc=drc@linux.vnet.ibm.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=ian.stokes@intel.com \
    --cc=jerinj@marvell.com \
    --cc=john.mcnamara@intel.com \
    --cc=ktraynor@redhat.com \
    --cc=pezhang@redhat.com \
    --cc=pingx.yu@intel.com \
    --cc=qian.q.xu@intel.com \
    --cc=rasland@mellanox.com \
    --cc=stable@dpdk.org \
    --cc=thomas@monjalon.net \
    --cc=yuan.peng@intel.com \
    --cc=zhaoyan.chen@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).