2017-05-30 4 views
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 
} 
} 

が、それは可能ですか?

答えて

1

私は、Youtrackが同じ問題のタイトルと説明を持つ新しい問題を自動的に設定していることにお気づきました。related to既存のものです。
新しいルールを作成しました

rule Delete duplicates in Board 

when Stage == {To Check} && issue == relates to { 
applyCommand("delete"); 
} 
関連する問題