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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}