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」です。
拡張機能のスクリーンショット
PR Status拡張機能のCRXファイルをダウンロード
PR Status拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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\/*" ] } |