Github Labels for JIRA Sprints

Adds information to cards in the JIRA sprint view to show GitHub labels on associated Pull Requests.

什麼是Github Labels for JIRA Sprints?

Github Labels for JIRA Sprints是由Jason MacLean開發的Chrome擴展程式,該擴展的主要功能是“Adds information to cards in the JIRA sprint view to show GitHub labels on associated Pull Requests.”。

擴展截圖

screenshot

下載Github Labels for JIRA Sprints擴展crx文件

下載Github Labels for JIRA Sprints擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Improve your development workflow by bringing pull request labels directly into JIRA.  This extension provides a 360 degree view of where your engineers are at with their PR's, who needs to take action, and where issues are stalling out.

Installation Instructions:
After installing this extension, you must add a GitHub access token so the extension can make API calls to get the label information

Create a Github Access Token
    1. https://github.com/settings/tokens ← Navigate here
    2. Click Generate New Token
    3. Re-enter your password
    4. Give your token a description (e.g. Label chrome extension)
    5. Select the repos scope
    6. Click Generate Token
    7. Copy the token
    8. Paste this token in the extension options

Prerequisites:
* Only available on Classic JIRA projects -- next-gen is not supported
* JIRA <-> GitHub integration has been configured and user is able to see associated PR's (Use smart commits!)                    

擴展基本資訊

名稱 Github Labels for JIRA Sprints Github Labels for JIRA Sprints
ID pfgmdhnlmmbeombfpoljnoeafjmoamdj
官方網址 https://chromewebstore.google.com/detail/github-labels-for-jira-sp/pfgmdhnlmmbeombfpoljnoeafjmoamdj
簡介 Adds information to cards in the JIRA sprint view to show GitHub labels on associated Pull Requests.
檔案大小 57.55 KB
安裝次數 282
目前版本 0.14.0
更新時間 2021-10-14
上架時間 2020-03-11
評分 4.75/5 共 4 次評分
開發者 Jason MacLean
電子郵箱 [email protected]
付費類型 free
擴展官網 https://macleanjr.github.io/projects/github-labels-in-jira/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Labels for JIRA Sprints",
    "version": "0.14.0",
    "description": "Adds information to cards in the JIRA sprint view to show GitHub labels on associated Pull Requests.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/*.atlassian.net\/jira\/software\/c\/projects\/*\/boards\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "assets\/travis-pass.png",
        "assets\/travis-fail.png",
        "assets\/travis-pending.png"
    ]
}