Skip to content

Commit

Permalink
Fix release contributors script (open-telemetry#6879)
Browse files Browse the repository at this point in the history
Similar to
open-telemetry/opentelemetry-java-contrib#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).
  • Loading branch information
trask authored and dmarkwat committed Oct 22, 2022
1 parent 2afc4fd commit a63bfe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/generate-release-contributors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/' \
Expand Down

0 comments on commit a63bfe5

Please sign in to comment.