mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-13 10:51:35 +00:00
Parses the CL descriptions and adds missing hashtags to Gerrit changes. Also add ./tools/push-to-gerrit which runs this after pushing the local branch's changes to 'main'. Use this for the VSCode 'push' task. Change-Id: I4c3f5982f6fdc7c1c6ebe770fc7811b1b38795d1 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/133061 Commit-Queue: Ben Clayton <bclayton@google.com> Kokoro: Ben Clayton <bclayton@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
23 lines
783 B
Bash
Executable File
23 lines
783 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2023 The Tint Authors
|
|
#
|
|
# Licensed 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.
|
|
|
|
set -e # Fail on any error.
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd )"
|
|
|
|
git push origin HEAD:refs/for/main
|
|
|
|
${SCRIPT_DIR}/run add-gerrit-hashtags
|