PR Status

Show Github PR Review Approval status in the cards on a Jira board

PR Status란 무엇입니까?

PR Status은(는) rehanahmad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show Github PR Review Approval status in the cards on a Jira board"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

PR Status 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A chrome extension to show the Github PR Review statuses in the cards on a JIRA board.

- For every PR associated with the JIRA ticket It adds a line of info: 
  - PR Status (Branch|Draft|Open|Merged|Closed)
  - Name of the repo 
  - Latest update of the reviews from each reviewer
- The PR Status icons (Open or Merged) can be clicked to open the PR in Github. 
- Status is automatically updated but can be manually refreshed by clicking on the extension icon (or by reloading the page).

LIMITATION AND REQUIREMENTS

- Currently works only with Classic JIRA boards (next-gen not supported yet).
- Github official integration should already be configured in your JIRA account.

MOTIVATION

During a daily stand up session it is essential to know the latest status of the associated Github PRs and how many reviews approvals these have. However default Github integration of JIRA does not allow this information to be shown easily. With this extension you can quickly view which tickets have their pull requests been reviewed and approved. Having this information right on the ticket should make your stand up session more productive.

SETUP

To configure the extension please provide your Github token in the Options page. Github personal access token can be generated from https://github.com/settings/tokens. This token should have at least have 'repo' scopes.

Once entered, press the Check button to validate the token. It should show the result of validation below the token input area. Kindly ensure the token has  access to all the repos that you expect. In particular if SSO has been enabled on your Github org account the token should be explicitly Authorized for access to the org repos via SSO.


JIRA COLUMNS

This extension automatically picks up all the JIRA issues found in the *middle columns* of any board to be populated with the PR Review statuses. 

Middle columns are all the columns other than the first and the last column. No manual configuration of columns is needed. The reason for this choice is to allows the extension to work on any board. The first and last columns are usually something like TODO and DONE columns which are unlikely to contain any interesting PRs associated with them.

In future it may allow more fine tuning / customisation to restrict columns that should be updated.


LATEST UPDATES:
*v1.0.16
 - Support new jira url pattern
*v1.0.12
 - workarounds for bad jira reported statuses
*v1.0.8
 - bug fix for more than 30 reviews per pr
*v1.0.7
 - bug fixes #20, #21
*v1.0.5
- bug fixes
*v1.0.4
 - refresh on jira board refresh now button
 - enabled on jira.com
* v1.0.3
 - bug Fixes 
* v1.0.0
  - add support for DISMISSED review status 
  - support draft status (fixes #11) 
  - support for branch status
  - fix overlap of review status icons over repo name 
  - use svg icons 

* v0.3.0
  - Refactored to be compatible with firefox
  - Show updated count as badge on icon
  - Refresh on tab activated
  - Optimised permissions
  - Bug fixes                    

확장 프로그램 기본 정보

이름 PR Status PR Status
ID flfdeojdcmafkipiacfmdgnijodanedb
공식 URL https://chromewebstore.google.com/detail/pr-status/flfdeojdcmafkipiacfmdgnijodanedb
설명 Show Github PR Review Approval status in the cards on a Jira board
파일 크기 136 KB
설치 횟수 171
현재 버전 1.0.16
최근 업데이트 2021-09-04
출시 날짜 2020-10-14
평점 4.50/5 총 4 개의 평점
개발자 rehanahmad
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PR Status",
    "description": "Show Github PR Review Approval status in the cards on a Jira board",
    "version": "1.0.16",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon-active.png",
        "default_title": "PR Status"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/secure\/RapidBoard.jspa?*",
                "https:\/\/*.atlassian.net\/jira\/software\/*",
                "https:\/\/*.jira.com\/secure\/RapidBoard.jspa?*"
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "contentstyle.css"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon-active.png",
        "640": "icons\/logo-640.png"
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "icons\/icon-active.png",
        "icons\/icon-inactive.png",
        "icons\/icon-local.png",
        "icons\/logo-640.png"
    ],
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "https:\/\/*.atlassian.net\/*",
        "https:\/\/*.jira.com\/*"
    ]
}