jira etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
jira etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

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"
        }
    }
}

18 Temmuz 2023

Jira Cloud'a geçmiş yorumlu, geçmiş bilgisi içeren kayıt import

SYSTEM -> EXTERNAL SYSTEM IMPORT -> JSON

ÖRNEK VERİ:

{
"projects": [
{
"name": "PROJE",
"key": "PROJE_KEY",
"issues": [
{
"description" : "DETAY",
"status" : "Done",
"reporter" : "REPORTER_ID",
"resolution" : "Fixed",
"created" : "2019-01-05T18:20:00.000+0300",
"updated" : "2019-01-06T18:40:00.000+0300",
"summary" : "özet",
"assignee" : "ASSIGNE_ID",
"history" : [
{
"author" : "KISI_ID",
"created": "2023-07-05T18:40:00.000+0300",
"items": [
{
"fieldType" : "jira",
"field" : "status",
"fromString" : "Open",
"toString" : "Done"
}
]
}
],
"comments": [
{
"body": "YORUM",
"author": "KISI_ID",
"created": "2010-01-06T18:40:00.000+0300"
}
]
}
]
}
]
}

19 Mart 2023

Jira'da filtreden Board oluşturmak


  1. Go to all: Boards. Then select Create board in the upper right of the screen.

  2. In the modal that appears, choose to either Create a Scrum board or Create a Kanban board, then choose Board from an existing Saved Filter.

  3. Give your board a name, and choose which filter you want to use. This new board will be available to all users who have access to your chosen filter.

  4. When you’re ready, select Create board.



kaynak: Burada