Repository: yetus Updated Branches: refs/heads/YETUS-83 e77b1cef6 -> b17912eef (forced update)
YETUS-124. add exemplar drill personality Signed-off-by: Allen Wittenauer <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/358b0eab Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/358b0eab Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/358b0eab Branch: refs/heads/YETUS-83 Commit: 358b0eab7ff2eca2583c8ecef871680e9044fb4d Parents: 36e5811 Author: Kengo Seki <[email protected]> Authored: Sat Oct 31 00:20:42 2015 +0900 Committer: Allen Wittenauer <[email protected]> Committed: Fri Oct 30 12:29:55 2015 -0700 ---------------------------------------------------------------------- precommit/personality/drill.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/358b0eab/precommit/personality/drill.sh ---------------------------------------------------------------------- diff --git a/precommit/personality/drill.sh b/precommit/personality/drill.sh new file mode 100755 index 0000000..9345752 --- /dev/null +++ b/precommit/personality/drill.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env bash +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +personality_plugins "all" + +function personality_globals +{ + #shellcheck disable=SC2034 + GITHUB_REPO="apache/drill" + #shellcheck disable=SC2034 + HOW_TO_CONTRIBUTE="https://drill.apache.org/docs/apache-drill-contribution-guidelines/" + #shellcheck disable=SC2034 + JIRA_ISSUE_RE='^DRILL-[0-9]+$' + #shellcheck disable=SC2034 + JIRA_STATUS_RE='Reviewable' +}
