Skip to content

Commit

Permalink
Merge pull request #67 from neos/skip-ci
Browse files Browse the repository at this point in the history
TASK: Use [skip ci] as commit message hint
  • Loading branch information
albe authored Mar 21, 2021
2 parents 8eca885 + 7f2c16c commit a074ebd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions Build/create-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ set -e
# Generates a changelog in reStructuredText from the commit history of
# the packages in Packages/Neos:
#
# - TYPO3.Media
# - TYPO3.Neos
# - TYPO3.Neos.Kickstarter
# - TYPO3.Neos.NodeTypes
# - TYPO3.TYPO3CR
# - TYPO3.TypoScript
# - Neos.Media
# - Neos.Neos
# - Neos.Kickstarter
# - Neos.NodeTypes
# - Neos.ContentRepository
# - Neos.Fusion
#
# Needs the following environment variables
#
Expand Down Expand Up @@ -108,8 +108,8 @@ perl -p -i -0 -e 's/(\* [^\n]+)\n+(\* [^\n]+)/$1\n$2/g' ${TARGET}
git add ${TARGET}
if [ -z "$BUILD_URL" ]
then
git commit -m "TASK: Add changelog for ${VERSION}" || echo " nothing to commit "
git commit -m "TASK: Add changelog for ${VERSION} [skip ci]" || echo " nothing to commit "
else
git commit -m "TASK: Add changelog for ${VERSION}" -m "See $BUILD_URL" || echo " nothing to commit "
git commit -m "TASK: Add changelog for ${VERSION} [skip ci]" -m "See $BUILD_URL" || echo " nothing to commit "
fi
cd -
6 changes: 3 additions & 3 deletions Build/sync-crowdin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ php Build/BuildEssentials/Crowdin/Teardown.php `pwd`/crowdin.json
cd Packages/Framework
echo 'Commit and push to Framework'
git ls-files -o | grep 'Translations' | xargs git add
git commit -am 'TASK: Update translations from translation tool [skip travis]' || true
git commit -am 'TASK: Update translations from translation tool [skip ci]' || true
git pull --rebase
git config push.default simple
git push origin
Expand All @@ -41,7 +41,7 @@ cd -
cd Packages/Neos
echo 'Commit and push to Neos'
git ls-files -o | grep 'Translations' | xargs git add
git commit -am 'TASK: Update translations from translation tool [skip travis]' || true
git commit -am 'TASK: Update translations from translation tool [skip ci]' || true
git pull --rebase
git config push.default simple
git push origin
Expand All @@ -52,7 +52,7 @@ for PACKAGE in Neos.Form Neos.GoogleAnalytics Neos.Party Neos.Seo ; do
echo "Commit and push to ${PACKAGE}"
cd Packages/Application/${PACKAGE}
git ls-files -o | grep 'Translations' | xargs git add
git commit -am 'TASK: Update translations from translation tool [skip travis]' || true
git commit -am 'TASK: Update translations from translation tool [skip ci]' || true
git pull --rebase
git config push.default simple
git push origin
Expand Down
2 changes: 1 addition & 1 deletion Build/update-references.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ done

# commit and push results to Neos dev collection
echo 'Commit and push to Neos'
git commit -am 'TASK: Update references [skip travis]'
git commit -am 'TASK: Update references [skip ci]'
git config push.default simple
git push origin ${BRANCH}
cd -

0 comments on commit a074ebd

Please sign in to comment.