0
プロジェクトで新しい問題を作成する新しいメールボックス統合が作成されました。 私のような何か、重複の問題を回避したいと思います:重複するタイトルの問題を削除する(または状態を変更する)
rule Delete duplicate issues after being added automatically with a To check State
when State == {To check} {
//check all issues in the Project
//check if there is an issue with the same Title {
State = Archived; // or delete the Issue
}
}
が、それは可能ですか?