Create placeholders for documenting release by repository

Change-Id: I0e4af607de9e6aac3424676f344714e0d9e6fde8
diff --git a/howto/release/tasks/copyright.rst b/howto/release/tasks/copyright.rst
new file mode 100644
index 0000000..64314af
--- /dev/null
+++ b/howto/release/tasks/copyright.rst
@@ -0,0 +1,15 @@
+.. _Release Task Copyright:
+
+Copyright Notice
+================
+
+Update copyright notice ending date on sources.
+
+.. code-block:: shell-session
+   :caption: Update copyrigth notice ending date.
+
+   # Clone copyright repository
+   % git clone git@github.com:joey-onf/copyright.git /tmp/copyright
+
+   % cd myrepo
+   % /tmp/copyright/gather.sh
diff --git a/howto/release/tasks/golang_gofmt_syntax.rst b/howto/release/tasks/golang_gofmt_syntax.rst
new file mode 100644
index 0000000..0f6bb1e
--- /dev/null
+++ b/howto/release/tasks/golang_gofmt_syntax.rst
@@ -0,0 +1,14 @@
+.. _Release Task Golang Syntax:
+
+GOLANG: Syntax formatting with gofmt
+====================================
+
+Use the gofmt command to reformat golang sources gathered outside the vendor/ directory.
+
+.. code-block:: shell-session
+   :caption:
+
+   % make golang-fmt
+
+   % cd mysandbox
+   % find . ! -path './vendor/\*' -name '*.go' -print | xargs -n1 gofmt -s -e -w
diff --git a/howto/release/tasks/index.rst b/howto/release/tasks/index.rst
new file mode 100644
index 0000000..9507df2
--- /dev/null
+++ b/howto/release/tasks/index.rst
@@ -0,0 +1,28 @@
+Release Tasks
+=============
+
+BUILD[baseline]: detect pre-existing corruption
+-----------------------------------------------
+
+- Apply cosmetic edits to sorce: comments, formatting, nothing that changes logic flow.
+- Update copyright notice ending date (if December release).
+- gofmt - standard golang source formatting.
+- Else add/modify comments in all sources.
+- These edits are cosmetic and should be a NOP.
+- Failing jobs are a sign of pre-existing corruption.  Open a jira ticket and fix.
+
+BUILD[pre-release]: dependency and module updates
+-------------------------------------------------
+
+- make go mod-update
+- Update copyright notices :ref:`Release Task Copyright`
+
+Standard syntax & formatting
+----------------------------
+
+- Golang syntax fomatting :ref:`Release Task Golang Syntax`
+
+Chart.yaml
+----------
+
+- Update version string(s) for voltha-lib-go.