14 Ağustos 2024

Jirada otomasyonlar

Jira'da belli bir statüde kalan ve belli bir süredir güncellenmeyen taskları otomasyon ile Done'a çekebilirsiniz 

Project settings->Automation->Create Rule

When: Scheduled
her gün veya belli zamanlarda çalışması sağlanabilir, sadece hafta içi sabah 8:30da çalışsın istiyorsanız Basic yanındaki Advanced cron expression'a şunu ekleyebilirsiniz:

0 30 8 ? * MON-FRI

JQL'e de 10 gündür güncellenmeyen ve belli statüde kalan müşteri bekliyor vb:

PROJECT=PROJENİZ AND updated<="-10d" AND status="STATUNUZ"

Then: Transition the issue to :

Destination status: Done

More options-> Additional fields kısmında comment de atabilirsiniz

{
    "update": {
        "comment": [
            {
                "add": {
                    "body": "This issue was not updated since 10 days, moving to Done. You can re-open when required."
                }
            }
        ]
    },
    "fields": {
        "resolution": {
            "name": "Fixed"
        }
    }
}

Hiç yorum yok: