Fix release contributors script (#6879)
Similar to https://github.com/open-telemetry/opentelemetry-java-contrib/pull/530. Also, I fixed the contributor list in the release notes which was incorrect due to this bug (I believe only in this latest release due to introduction of dependabot).
This commit is contained in:
parent
461420110a
commit
b25283d2ca
|
@ -72,7 +72,7 @@ query($q: String!, $endCursor: String) {
|
|||
}
|
||||
}
|
||||
' --jq '.data.search.edges.[].node.body' \
|
||||
| grep -oE "#[0-9]{4,}|$GITHUB_REPOSITORY/issues/[0-9]{4,}" \
|
||||
| grep -oE "#[0-9]{4,}$|#[0-9]{4,}[^0-9<]|$GITHUB_REPOSITORY/issues/[0-9]{4,}" \
|
||||
| grep -oE "[0-9]{4,}" \
|
||||
| xargs -I{} gh issue view {} --json 'author,url' --jq '[.author.login,.url]' \
|
||||
| grep -v '/pull/' \
|
||||
|
|
Loading…
Reference in New Issue