1
1
#! /bin/bash -e
2
2
3
- # shellcheck disable=SC2016
4
- # shellcheck disable=SC2086
5
-
6
3
# this should be run on the release branch
7
4
8
5
# NOTE if you need to run this script locally, you will need to first:
13
10
from_version=$1
14
11
15
12
# get the date of the first commit that was not in the from_version
16
- from=$( git log --reverse --pretty=format:" %cI" $from_version ..HEAD | head -1)
13
+ from=$( git log --reverse --pretty=format:" %cI" " $from_version ..HEAD" | head -1)
17
14
18
15
# get the last commit on main that was included in the release
19
16
to=$( git merge-base origin/main HEAD | xargs git log -1 --pretty=format:" %cI" )
20
17
18
+ # shellcheck disable=SC2016 # "Expressions don't expand in single quotes"
21
19
contributors1=$( gh api graphql --paginate -F q=" repo:$GITHUB_REPOSITORY is:pr base:main is:merged merged:$from ..$to " -f query='
22
20
query($q: String!, $endCursor: String) {
23
21
search(query: $q, type: ISSUE, first: 100, after: $endCursor) {
@@ -55,6 +53,7 @@ query($q: String!, $endCursor: String) {
55
53
56
54
# this query captures authors of issues which have had PRs in the current range reference the issue
57
55
# but not necessarily through closingIssuesReferences (e.g. addressing just a part of an issue)
56
+ # shellcheck disable=SC2016 # "Expressions don't expand in single quotes"
58
57
contributors2=$( gh api graphql --paginate -F q=" repo:$GITHUB_REPOSITORY is:pr base:main is:merged merged:$from ..$to " -f query='
59
58
query($q: String!, $endCursor: String) {
60
59
search(query: $q, type: ISSUE, first: 100, after: $endCursor) {
@@ -79,7 +78,7 @@ query($q: String!, $endCursor: String) {
79
78
| sed ' s/^\["//' \
80
79
| sed ' s/".*//' )
81
80
82
- echo $contributors1 $contributors2 \
81
+ echo " $contributors1 " " $contributors2 " \
83
82
| sed ' s/ /\n/g' \
84
83
| sort -uf \
85
84
| grep -v linux-foundation-easycla \
0 commit comments