Find an issue inside event
- Configured to use ACT for testing github actions locally
- Build system now uses esbuild to a Node16 bundle
- i.e.
yarn exec esbuild src/index.js --bundle --outdir=lib/ --platform=node --target=node16.10 --sourcemap --format=cjs
- i.e.
- Action now uses the new GitHub Node16 runtime
- New Jest tests have been added (still more required)
- Added prettier, eslint and shellcheck to keep the formatting consistent
Extract issue key from string
For examples on how to use this, check out the gajira-demo repository
Only supports Jira Cloud. Does not support Jira Server (hosted)Now supports Jira server, and GitHub enterprise
Note: this action requires Jira Login Action
- uses: Broadshield/gajira-find-issue-key@main
with:
# Provide a string to extract issue key from
string: ""
# Find from predefined place. Can be 'branch', 'pull_request', 'string', or
# 'commits', default is 'commits'
# Default: commits
from: ""
# Options can be: 'first', or 'all'
# This variable controls both how many results are returned, and how many results
# are processed.
# If the 'from' variable is 'pull_request', and this 'returns' variable is 'all',
# then base-ref defaults to the pull_request.base.ref, and the head-ref defaults
# to pull_request.head.ref from the github event.
# NOTE: This action originally returned only the first Jira Ticket ID found. For
# backwards compatibility the default is set to 'first'.
# Default: first
returns: ""
# The Git Head Ref to which commit messages will be collected up to. If the
# base-ref is included, and the github event is a pull_request or push, The
# head-ref from the event will be used.
head-ref: ""
# The Git Base Ref to which commit messages will be collected up from. If the
# base-ref is not included,
base-ref: ""
# Collects the Jira issue numbers from the Pull Request, and puts them at the
# start of the PR title. Trims to 70 characters, i.e:
# MYISSUE-123, MYISSUE-124: Resolve callback error, and fix typo
# Default: true
standardize-pr-title: ""
# When parsing commit messages, include merge and pull messages. This is disabled
# by default, to exclude tickets that may be included or fixed in other branches
# or pull requests.
# Default: false
include-merge-messages: ""
# Create GitHub Milestones from the Jira Issue' sprints
# Default: false
generate-github-milestones: ""
# When a Jira Issue is found, the existing list of GitHub issues is iterated
# through, and if a GitHub issue starts with the Jira Issue Key, then the Github
# Issue is updated with details from the Jira issue. If the Github issue doesn't
# exist, the GitHub issue is created.
# If 'generate-github-milestones' is 'true', then the GitHub issue is linked to
# the milestone.
# If this action is triggered through a pull_request event, then when the
# pull_request is closed, and merged, the GitHub issues are also closed, by adding
# 'Resolves #<IssueNumber>' syntax on the pull_request body
# Default: false
generate-github-issues: ""
# A comma separated list of all allowed Jira Transitions in order
jira-transition-chain: ""
# The name of the transition to apply when a new branch is created
jira-transition-on-new-branch: ""
# The name of the transition to apply when a Pull Request is opened
jira-transition-on-pr-open: ""
# The name of the transition to apply when a Pull Request is approved
jira-transition-on-pr-approval: ""
# The name of the transition to apply when a Pull Request is closed and merged
jira-transition-on-pr-merge: ""
# The Jira Fix Versions that the Jira Issues found will be assigned.
fix-version: ""
# The Jira Fix Versions that the Jira Issues found will be assigned, as a comma
# separated list. Use `NONE` to remove the Fix Version from the Jira Issue.
fix-versions: ""
# If 'true', then the Jira Fix Versions will be replaced with the 'fix-versions'
# input. Otherwise it will combine the existing Fix Versions with the
# 'fix-versions' input.
# Default: true
replace-fix-versions: ""
# GitHub Token used for authentication
github-token: ""
# If 'true', then the Gist will be private. Otherwise it will be public.
# Default: false
gist-private: ""
# Options can be: 'first', or 'all'
# This variable controls both how many results are returned, and how many results
# are processed.
# If the 'from' variable is 'pull_request', and this 'returns' variable is 'all',
# then base-ref defaults to the pull_request.base.ref, and the head-ref defaults
# to pull_request.head.ref from the github event.
# NOTE: This action originally returned only the first Jira Ticket ID found. For
# backwards compatibility the default is set to 'first'.
create-gist-output-named: ""
# The Jira cloud base url including protocol i.e. 'https://company.atlassian.net'
# or use environment variable JIRA_BASE_URL
jira_base_url: ""
# The Jira cloud user email address or use environment variable JIRA_USER_EMAIL
jira_user_email: ""
# The Jira cloud user api token or use environment variable JIRA_API_TOKEN
jira_api_token: ""
To find an issue key inside github event (branch):
- name: Find in commit messages
uses: atlassian/gajira-find-issue-key@master
with:
string: ${{ github.event.ref }}
Or do the same using shortcut from
:
- name: Find in commit messages
uses: atlassian/gajira-find-issue-key@master
with:
from: branch
To find an issue key inside commit messages:
- name: Find in commit messages
uses: atlassian/gajira-find-issue-key@master
with:
string: ${{ github.event.ref }}
To find an issue key inside github event (branch):
- name: Find in commit messages
uses: atlassian/gajira-find-issue-key@master
with:
from: branch
To find an issue key inside commit messages:
- name: Find in commit messages
uses: atlassian/gajira-find-issue-key@master
with:
from: commits
- None
Input | Description | Default | Required |
---|---|---|---|
string |
Provide a string to extract issue key from | false | |
from |
Find from predefined place. Can be 'branch', 'pull_request', 'string', or 'commits', default is 'commits' | commits |
false |
returns |
Options can be: 'first', or 'all' This variable controls both how many results are returned, and how many results are processed. If the 'from' variable is 'pull_request', and this 'returns' variable is 'all', then base-ref defaults to the pull_request.base.ref, and the head-ref defaults to pull_request.head.ref from the github event. |
||
NOTE: This action originally returned only the first Jira Ticket ID found. For backwards compatibility the default is set to 'first'. | first |
false | |
head-ref |
The Git Head Ref to which commit messages will be collected up to. If the base-ref is included, and the github event is a pull_request or push, The head-ref from the event will be used. | false | |
base-ref |
The Git Base Ref to which commit messages will be collected up from. If the base-ref is not included, | false | |
standardize-pr-title |
Collects the Jira issue numbers from the Pull Request, and puts them at the start of the PR title. Trims to 70 characters, i.e: MYISSUE-123, MYISSUE-124: Resolve callback error, and fix typo |
true |
false |
include-merge-messages |
When parsing commit messages, include merge and pull messages. This is disabled by default, to exclude tickets that may be included or fixed in other branches or pull requests. | false | |
generate-github-milestones |
Create GitHub Milestones from the Jira Issue' sprints | false | |
generate-github-issues |
When a Jira Issue is found, the existing list of GitHub issues is iterated through, and if a GitHub issue starts with the Jira Issue Key, then the Github Issue is updated with details from the Jira issue. If the Github issue doesn't exist, the GitHub issue is created. If 'generate-github-milestones' is 'true', then the GitHub issue is linked to the milestone. If this action is triggered through a pull_request event, then when the pull_request is closed, and merged, the GitHub issues are also closed, by adding 'Resolves #' syntax on the pull_request body |
false |
false |
jira-transition-chain |
A comma separated list of all allowed Jira Transitions in order | false | |
jira-transition-on-new-branch |
The name of the transition to apply when a new branch is created | false | |
jira-transition-on-pr-open |
The name of the transition to apply when a Pull Request is opened | false | |
jira-transition-on-pr-approval |
The name of the transition to apply when a Pull Request is approved | false | |
jira-transition-on-pr-merge |
The name of the transition to apply when a Pull Request is closed and merged | false | |
fix-version |
The Jira Fix Versions that the Jira Issues found will be assigned. | false | |
fix-versions |
The Jira Fix Versions that the Jira Issues found will be assigned, as a comma separated list. Use NONE to remove the Fix Version from the Jira Issue. |
false | |
replace-fix-versions |
If 'true', then the Jira Fix Versions will be replaced with the 'fix-versions' input. Otherwise it will combine the existing Fix Versions with the 'fix-versions' input. | true |
false |
github-token |
GitHub Token used for authentication | false | |
gist-private |
If 'true', then the Gist will be private. Otherwise it will be public. | false |
false |
create-gist-output-named |
Options can be: 'first', or 'all' This variable controls both how many results are returned, and how many results are processed. If the 'from' variable is 'pull_request', and this 'returns' variable is 'all', then base-ref defaults to the pull_request.base.ref, and the head-ref defaults to pull_request.head.ref from the github event. |
||
NOTE: This action originally returned only the first Jira Ticket ID found. For backwards compatibility the default is set to 'first'. | false | ||
jira_base_url |
The Jira cloud base url including protocol i.e. 'https://company.atlassian.net' or use environment variable JIRA_BASE_URL | false | |
jira_user_email |
The Jira cloud user email address or use environment variable JIRA_USER_EMAIL | false | |
jira_api_token |
The Jira cloud user api token or use environment variable JIRA_API_TOKEN | false |
**Output** | **Description** | **Default** | **Required** |
---|---|---|---|
issue |
Key of the found issue | undefined | undefined |
issues |
Keys of the found issues as comma separated list | undefined | undefined |
gist-url |
The url to the generated Gist | undefined | undefined |
gist-name |
The name of the Gist created | undefined | undefined |
- None
issue
- a key of a found issue
issue
- a key of a found issue