Skip to content

jackpocket/link-jira-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

link-jira-action

Github Action to link a JIRA issue to the PR based on PR title

Example Usage

  • create add-jira-description.yaml
name: Add JIRA Description

on:
  pull_request:
    types: [opened, reopened, edited, synchronize]

jobs:
  link-jira:
    runs-on: ubuntu-latest
    steps:
      - uses: jackpocket/link-jira-action@v1
        with:
          jira-base-url: https://FAKE.atlassian.net
          jira-email: ${{ secrets.FAKE_JIRA_EMAIL }}
          jira-token: ${{ secrets.FAKE_JIRA_TOKEN }}
          github-token: ${{ secrets.GITHUB_TOKEN }}

Uses the PR Title (not the branch) for searching for JIRA issue to ensure that we have consistent PR titles.

About

Links JIRA to PR based on PR title

Resources

Stars

Watchers

Forks

Packages

No packages published