Skip to content

Commit ced2880

Browse files
authored
[chore][ping-codeowners-on-new-issue] Ping even if owner filed (open-telemetry#12716)
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Code owners should be pinged even if a code owner filed an issue. This helps other code owners, in the case of more than one for a single component, be notified of relevant issues being filed. This is the same change as open-telemetry/opentelemetry-collector-contrib#38841, as [requested](open-telemetry/opentelemetry-collector-contrib#38841 (comment)).
1 parent 8951ae8 commit ced2880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/ping-codeowners-on-new-issue.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ for COMPONENT in ${BODY_COMPONENTS}; do
4848

4949
CODEOWNERS=$(COMPONENT="${COMPONENT}" "${CUR_DIRECTORY}/get-codeowners.sh" || true)
5050

51-
if [[ -n "${CODEOWNERS}" && ! ("${CODEOWNERS}" =~ ${OPENER}) ]]; then
51+
if [[ -n "${CODEOWNERS}" ]]; then
5252
if [[ -v PINGED_COMPONENTS["${COMPONENT}"] ]]; then
5353
continue
5454
fi

0 commit comments

Comments
 (0)