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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jason MacLean, και η κύρια λειτουργία του είναι "Adds information to cards in the JIRA sprint view to show GitHub labels on associated Pull Requests.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Github Labels for JIRA Sprints

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    ]
}