Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

우려 사항

concern 명령은 GitHub 이슈/PR의 최상단 댓글에 우려 사항을 공식적으로 등록하는 데 사용됩니다.

사용법

우려 사항은 다음 명령이 담긴 댓글을 작성하여 등록할 수 있습니다:

@rustbot concern my concern title

그러면 해당 우려 사항이 GitHub 이슈의 최상단 댓글에 있는 Concerns라는 특별한 섹션에 추가됩니다(이 섹션은 손으로 편집해서는 안 됩니다).

우려 사항은 조직의 구성원만 등록할 수 있으며, 활성 상태인 rfcbot FCP에는 등록할 수 없습니다.

우려 사항 해결하기

우려 사항은 다음 명령이 담긴 댓글을 작성하여 해결할 수 있습니다:

@rustbot resolve my concern title

그러면 해당 우려 사항에 취소선이 그어지고, 그 옆에 우려 사항을 해결한 댓글로 연결되는 링크가 추가됩니다.

설정

[!NOTE] 이 기능은 rust-lang 조직에서 기본적으로 활성화되어 있습니다.

이 기능은 triagebot.toml[concern] 테이블을 두면 활성화됩니다:

[concern]
labels = ["has-concerns"] # optional, list of labels to be added to the issue/PR when there are un-resolved concerns

구현

parser/src/command/concern.rssrc/handlers/concern.rs를 참고하십시오.