From f42028f5d8e2b236265e3d80233ddd8ccccb9369 Mon Sep 17 00:00:00 2001 From: flyte-bot Date: Tue, 2 Nov 2021 03:33:24 +0000 Subject: [PATCH 1/4] Update Boilerplate Signed-off-by: Flyte-Bot --- .github/config.yml | 4 ++-- boilerplate/flyte/welcome_bot/Readme.rst | 2 +- boilerplate/flyte/welcome_bot/config.yml | 4 ++-- boilerplate/flyte/welcome_bot/update.sh | 3 ++- boilerplate/update.sh | 6 +++--- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/config.yml b/.github/config.yml index e00694a864..73da252e52 100644 --- a/.github/config.yml +++ b/.github/config.yml @@ -1,9 +1,9 @@ # Comment to be posted on PRs from first-time contributors in your repository -newPRWelcomeComment: > +newPRWelcomeComment: | Thank you for opening this pull request! 🙌 These tips will help get your PR across the finish line: - + - Most of the repos have a PR template; if not, fill it out to the best of your knowledge. - Sign off your commits (Reference: [DCO Guide](https://github.com/src-d/guide/blob/master/developer-community/fix-DCO.md)). diff --git a/boilerplate/flyte/welcome_bot/Readme.rst b/boilerplate/flyte/welcome_bot/Readme.rst index 7b2ee0a215..ea18781185 100644 --- a/boilerplate/flyte/welcome_bot/Readme.rst +++ b/boilerplate/flyte/welcome_bot/Readme.rst @@ -5,4 +5,4 @@ Provides a ``config.yml`` file. **To Enable:** -Add ``flyte/config.yml`` to your ``boilerplate/update.cfg`` file. +Add ``flyte/config.yml`` to your ``boilerplate/update.cfg`` file. \ No newline at end of file diff --git a/boilerplate/flyte/welcome_bot/config.yml b/boilerplate/flyte/welcome_bot/config.yml index e00694a864..73da252e52 100644 --- a/boilerplate/flyte/welcome_bot/config.yml +++ b/boilerplate/flyte/welcome_bot/config.yml @@ -1,9 +1,9 @@ # Comment to be posted on PRs from first-time contributors in your repository -newPRWelcomeComment: > +newPRWelcomeComment: | Thank you for opening this pull request! 🙌 These tips will help get your PR across the finish line: - + - Most of the repos have a PR template; if not, fill it out to the best of your knowledge. - Sign off your commits (Reference: [DCO Guide](https://github.com/src-d/guide/blob/master/developer-community/fix-DCO.md)). diff --git a/boilerplate/flyte/welcome_bot/update.sh b/boilerplate/flyte/welcome_bot/update.sh index a763d607b8..2db64ac3f1 100755 --- a/boilerplate/flyte/welcome_bot/update.sh +++ b/boilerplate/flyte/welcome_bot/update.sh @@ -2,7 +2,7 @@ # WARNING: THIS FILE IS MANAGED IN THE 'BOILERPLATE' REPO AND COPIED TO OTHER REPOSITORIES. # ONLY EDIT THIS FILE FROM WITHIN THE 'FLYTEORG/BOILERPLATE' REPOSITORY: -# +# # TO OPT OUT OF UPDATES, SEE https://github.com/flyteorg/boilerplate/blob/master/Readme.rst set -e @@ -12,3 +12,4 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" # Clone the config.yml file echo " - copying ${DIR}/config.yml to the root directory." cp "${DIR}"/config.yml "${DIR}"/../../../.github/config.yml + diff --git a/boilerplate/update.sh b/boilerplate/update.sh index 199bb1a77c..73de4dc91c 100755 --- a/boilerplate/update.sh +++ b/boilerplate/update.sh @@ -2,7 +2,7 @@ # WARNING: THIS FILE IS MANAGED IN THE 'BOILERPLATE' REPO AND COPIED TO OTHER REPOSITORIES. # ONLY EDIT THIS FILE FROM WITHIN THE 'FLYTEORG/BOILERPLATE' REPOSITORY: -# +# # TO OPT OUT OF UPDATES, SEE https://github.com/flyteorg/boilerplate/blob/master/Readme.rst set -e @@ -12,7 +12,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" OUT="$(mktemp -d)" trap 'rm -fr $OUT' EXIT -git clone https://github.com/flyteorg/boilerplate.git "${OUT}" +git clone https://github.com/flyteorg/boilerplate.git "${OUT}" echo "Updating the update.sh script." cp "${OUT}/boilerplate/update.sh" "${DIR}/update.sh" @@ -22,7 +22,7 @@ README="https://github.com/flyteorg/boilerplate/blob/master/Readme.rst" if [ ! -f "$CONFIG_FILE" ]; then echo "$CONFIG_FILE not found." - echo "This file is required in order to select which features to include." + echo "This file is required in order to select which features to include." echo "See $README for more details." exit 1 fi From 398b968c14c2af497040749d061777416d64b5c5 Mon Sep 17 00:00:00 2001 From: Samhita Alla Date: Fri, 5 Nov 2021 10:37:29 +0530 Subject: [PATCH 2/4] fix lint Signed-off-by: Samhita Alla --- boilerplate/flyte/welcome_bot/update.sh | 3 +-- boilerplate/update.sh | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/boilerplate/flyte/welcome_bot/update.sh b/boilerplate/flyte/welcome_bot/update.sh index 2db64ac3f1..a763d607b8 100755 --- a/boilerplate/flyte/welcome_bot/update.sh +++ b/boilerplate/flyte/welcome_bot/update.sh @@ -2,7 +2,7 @@ # WARNING: THIS FILE IS MANAGED IN THE 'BOILERPLATE' REPO AND COPIED TO OTHER REPOSITORIES. # ONLY EDIT THIS FILE FROM WITHIN THE 'FLYTEORG/BOILERPLATE' REPOSITORY: -# +# # TO OPT OUT OF UPDATES, SEE https://github.com/flyteorg/boilerplate/blob/master/Readme.rst set -e @@ -12,4 +12,3 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" # Clone the config.yml file echo " - copying ${DIR}/config.yml to the root directory." cp "${DIR}"/config.yml "${DIR}"/../../../.github/config.yml - diff --git a/boilerplate/update.sh b/boilerplate/update.sh index 73de4dc91c..199bb1a77c 100755 --- a/boilerplate/update.sh +++ b/boilerplate/update.sh @@ -2,7 +2,7 @@ # WARNING: THIS FILE IS MANAGED IN THE 'BOILERPLATE' REPO AND COPIED TO OTHER REPOSITORIES. # ONLY EDIT THIS FILE FROM WITHIN THE 'FLYTEORG/BOILERPLATE' REPOSITORY: -# +# # TO OPT OUT OF UPDATES, SEE https://github.com/flyteorg/boilerplate/blob/master/Readme.rst set -e @@ -12,7 +12,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" OUT="$(mktemp -d)" trap 'rm -fr $OUT' EXIT -git clone https://github.com/flyteorg/boilerplate.git "${OUT}" +git clone https://github.com/flyteorg/boilerplate.git "${OUT}" echo "Updating the update.sh script." cp "${OUT}/boilerplate/update.sh" "${DIR}/update.sh" @@ -22,7 +22,7 @@ README="https://github.com/flyteorg/boilerplate/blob/master/Readme.rst" if [ ! -f "$CONFIG_FILE" ]; then echo "$CONFIG_FILE not found." - echo "This file is required in order to select which features to include." + echo "This file is required in order to select which features to include." echo "See $README for more details." exit 1 fi From 981ca4902286f7a5407c3c6af924b0ef8e05a2d6 Mon Sep 17 00:00:00 2001 From: Samhita Alla Date: Fri, 5 Nov 2021 11:03:55 +0530 Subject: [PATCH 3/4] fix lint Signed-off-by: Samhita Alla --- .github/config.yml | 2 +- boilerplate/flyte/welcome_bot/config.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/config.yml b/.github/config.yml index 73da252e52..04e92f6e6f 100644 --- a/.github/config.yml +++ b/.github/config.yml @@ -3,7 +3,7 @@ newPRWelcomeComment: | Thank you for opening this pull request! 🙌 These tips will help get your PR across the finish line: - + - Most of the repos have a PR template; if not, fill it out to the best of your knowledge. - Sign off your commits (Reference: [DCO Guide](https://github.com/src-d/guide/blob/master/developer-community/fix-DCO.md)). diff --git a/boilerplate/flyte/welcome_bot/config.yml b/boilerplate/flyte/welcome_bot/config.yml index 73da252e52..04e92f6e6f 100644 --- a/boilerplate/flyte/welcome_bot/config.yml +++ b/boilerplate/flyte/welcome_bot/config.yml @@ -3,7 +3,7 @@ newPRWelcomeComment: | Thank you for opening this pull request! 🙌 These tips will help get your PR across the finish line: - + - Most of the repos have a PR template; if not, fill it out to the best of your knowledge. - Sign off your commits (Reference: [DCO Guide](https://github.com/src-d/guide/blob/master/developer-community/fix-DCO.md)). From 88086912276a3d05c1b8852398811ae1b6be545f Mon Sep 17 00:00:00 2001 From: Samhita Alla Date: Fri, 5 Nov 2021 11:38:05 +0530 Subject: [PATCH 4/4] fix lint Signed-off-by: Samhita Alla --- boilerplate/flyte/welcome_bot/Readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boilerplate/flyte/welcome_bot/Readme.rst b/boilerplate/flyte/welcome_bot/Readme.rst index ea18781185..7b2ee0a215 100644 --- a/boilerplate/flyte/welcome_bot/Readme.rst +++ b/boilerplate/flyte/welcome_bot/Readme.rst @@ -5,4 +5,4 @@ Provides a ``config.yml`` file. **To Enable:** -Add ``flyte/config.yml`` to your ``boilerplate/update.cfg`` file. \ No newline at end of file +Add ``flyte/config.yml`` to your ``boilerplate/update.cfg`` file.