Merge "Make scripts DCO compliant"
This commit is contained in:
@@ -176,7 +176,7 @@ for PROJECT in $PROJECTS; do
|
|||||||
pushd $PROJECT_DIR
|
pushd $PROJECT_DIR
|
||||||
if ! git diff --stat --exit-code HEAD ; then
|
if ! git diff --stat --exit-code HEAD ; then
|
||||||
# Commit and review
|
# Commit and review
|
||||||
git_args="-a -F-"
|
git_args="-a -F- -s"
|
||||||
git commit $git_args <<EOF
|
git commit $git_args <<EOF
|
||||||
$COMMIT_MSG
|
$COMMIT_MSG
|
||||||
EOF
|
EOF
|
||||||
|
|||||||
@@ -69,6 +69,6 @@ spaces=$(grep unreleased releasenotes/source/index.rst | sed -e 's/\w//g')
|
|||||||
sed --in-place -e "/unreleased/s/unreleased/unreleased\n${spaces}${SERIES}/" releasenotes/source/index.rst
|
sed --in-place -e "/unreleased/s/unreleased/unreleased\n${spaces}${SERIES}/" releasenotes/source/index.rst
|
||||||
git add releasenotes/source/index.rst releasenotes/source/${SERIES}.rst
|
git add releasenotes/source/index.rst releasenotes/source/${SERIES}.rst
|
||||||
git diff
|
git diff
|
||||||
git commit -m "$commit_msg"
|
git commit -m "$commit_msg" -s
|
||||||
git show
|
git show
|
||||||
git review -t "reno-${SERIES}" --yes
|
git review -t "reno-${SERIES}" --yes
|
||||||
|
|||||||
@@ -45,6 +45,6 @@ unmaintained/${SERIES}.
|
|||||||
sed --in-place -e "s/stable\/${SERIES}/unmaintained\/${SERIES}/" releasenotes/source/${SERIES}.rst
|
sed --in-place -e "s/stable\/${SERIES}/unmaintained\/${SERIES}/" releasenotes/source/${SERIES}.rst
|
||||||
git add releasenotes/source/${SERIES}.rst
|
git add releasenotes/source/${SERIES}.rst
|
||||||
git diff
|
git diff
|
||||||
git commit -m "$commit_msg"
|
git commit -m "$commit_msg" -s
|
||||||
git show
|
git show
|
||||||
git review -t "reno-eom-${SERIES}" --yes
|
git review -t "reno-eom-${SERIES}" --yes
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ function update_gitreview {
|
|||||||
defaultbranch=$branch"
|
defaultbranch=$branch"
|
||||||
echo "$grcontents" > .gitreview
|
echo "$grcontents" > .gitreview
|
||||||
git add .gitreview
|
git add .gitreview
|
||||||
git commit -m "Update .gitreview for $branch"
|
git commit -m "Update .gitreview for $branch" -s
|
||||||
git show
|
git show
|
||||||
local shortbranch=$(basename $branch)
|
local shortbranch=$(basename $branch)
|
||||||
git review -t "create-${shortbranch}" --yes
|
git review -t "create-${shortbranch}" --yes
|
||||||
@@ -110,7 +110,7 @@ the requirements repository branches.
|
|||||||
|
|
||||||
Until the requirements repository has as $branch branch, tests will
|
Until the requirements repository has as $branch branch, tests will
|
||||||
continue to use the upper-constraints list on master."
|
continue to use the upper-constraints list on master."
|
||||||
git commit -m "$msg" -m "$body"
|
git commit -m "$msg" -m "$body" -s
|
||||||
git show
|
git show
|
||||||
local shortbranch=$(basename $branch)
|
local shortbranch=$(basename $branch)
|
||||||
git review -t "create-${shortbranch}" --yes
|
git review -t "create-${shortbranch}" --yes
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ else
|
|||||||
if git commit -a -m "update constraint for $dist_name to new release $VERSION
|
if git commit -a -m "update constraint for $dist_name to new release $VERSION
|
||||||
|
|
||||||
$TAG_META
|
$TAG_META
|
||||||
"; then
|
" -s; then
|
||||||
echo "Sleeping 10 minutes to avoid issues with the pypi cache"
|
echo "Sleeping 10 minutes to avoid issues with the pypi cache"
|
||||||
sleep 600
|
sleep 600
|
||||||
git show
|
git show
|
||||||
|
|||||||
Reference in New Issue
Block a user