Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit 551df05

Browse files
committed
add hack script to list all pull requests for each release
1 parent 8904693 commit 551df05

File tree

4,680 files changed

+1258311
-4614
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,680 files changed

+1258311
-4614
lines changed

Gopkg.lock

Lines changed: 142 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hack/release.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2018 Google, Inc. All rights reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
16+
17+
# you can pass your github token with --token here if you run out of requests
18+
go run ${DIR}/release_notes/listpullreqs.go
19+
20+
echo "Huge thank you for this release towards our contributors: "
21+
git log "$(git describe --abbrev=0)".. --format="%aN" --reverse | sort | uniq | awk '{printf "- %s\n", $0 }'

0 commit comments

Comments
 (0)