Skip to content

Commit febe820

Browse files
authored
Fix warnings from generate-release-contributors.sh (open-telemetry#2461)
1 parent 8515cc6 commit febe820

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/scripts/generate-release-contributors.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ query($q: String!, $endCursor: String) {
7272
}
7373
}
7474
' --jq '.data.search.edges.[].node.body' \
75-
| grep -oE "#[0-9]{3,}$|#[0-9]{3,}[^0-9<]|$GITHUB_REPOSITORY/issues/[0-9]{3,}" \
75+
| grep -oE "#[0-9]{3,}$|#[0-9]{3,}[^0-9<&#;]|$GITHUB_REPOSITORY/issues/[0-9]{3,}" \
7676
| grep -oE "[0-9]{3,}" \
7777
| xargs -I{} gh issue view {} --json 'author,url' --jq '[.author.login,.url]' \
7878
| grep -v '/pull/' \
@@ -83,8 +83,11 @@ query($q: String!, $endCursor: String) {
8383
echo $contributors1 $contributors2 \
8484
| sed 's/ /\n/g' \
8585
| sort -uf \
86-
| grep -v linux-foundation-easycla \
86+
| grep -v copilot-pull-request-reviewer \
87+
| grep -v copilot-swe-agent \
8788
| grep -v github-actions \
89+
| grep -v github-advanced-security \
90+
| grep -v linux-foundation-easycla \
8891
| grep -v renovate \
8992
| grep -v otelbot \
9093
| sed 's/^/@/'

0 commit comments

Comments
 (0)