Skip to content

fgiuliani/jira-issue-key-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jira Issue Key Checker - GitHub Action

Checks If a PR contains its linked Jira issue key in both the title and the description.

Inputs

GITHUB_TOKEN

Required

jira-prefix

Required The Jira issue key prefix. Ex. ABC-1111, prefix would be ABC.

Example usage

Create a workflow (eg: .github/workflows/jira-issue-key-checker.yml see Creating a Workflow file) to utilize the jira-issue-key-checker action with content:

name: "Jira Issue Key Checker"
on:
  pull_request:
    types:
      - opened
      - edited
      - synchronize

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: fgiuliani/jira-issue-key-checker@v1.0.0
        with:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          jira-prefix: 'ABC'

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published