Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Latest commit

 

History

History
37 lines (30 loc) · 1.88 KB

File metadata and controls

37 lines (30 loc) · 1.88 KB

action-transition-multiple-jira-issues

Find Jira issue keys from commit messages in pull requests and transition them

Usage

- name: Jira find and transition issues
  uses: bloobirds-it/[email protected]
  with:
    jira-base-url: https://<yourdomain>.atlassian.net
    jira-user-email: [email protected]
    jira-api-token: ${{ secrets.JIRA_API_TOKEN }}
    github-token: ${{ secrets.GITHUB_TOKEN }}
    target-status: In Progress
    issue-prefixes: BB, P1
    ignore-statuses: Done, QA

Inputs

Name Description Required
jira-base-url URL of Jira instance
jira-api-token Access Token for Authorization
jira-user-email Email of the user for which Access Token was created for
github-token Your everyday GitHub token
issue-prefixes Comma separated list of the prefixes to scan
target-status To which status the issues found in the pull request should transition to
ignore-statuses Comma separated list of statuses to ignore

References