Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
anchor

GitHub Action

Auto Ticket link commenter

v2.4

Auto Ticket link commenter

anchor

Auto Ticket link commenter

Comments JIRA ticket link in pull request

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Auto Ticket link commenter

uses: sbimochan/jira-link-commenter@v2.4

Learn more about this action in sbimochan/jira-link-commenter

Choose a version

Jira link commenter

This action auto comments in pull request with Jira link to it.

Settings

jira-project-url

Required Add your jira link in ticket link format. E.g: https://jira.atlassian.net/browse

Outputs

Creates a comment in your PR:

Jira Link: https://jira.atlassian.net/browse/JPT-1571

Example usage

uses: actions/jira-link-commenter@v2.4
with:
  jira-project-url: 'https://jira.atlassian.net/browse'
  custom-comment: 'Thank you for your contribution! :confetti_ball:'

Full example

on: pull_request

jobs:
  example_comment_pr:
    runs-on: ubuntu-latest
    name: Auto jira link commenter
    steps:
      - name: Checkout
        uses: actions/checkout@v1

      - name: Comment PR
        uses: sbimochan/jira-link-commenter@v2.4

        with:
          jira-project-url: https://jira.atlassian.net/browse
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          custom-comment: 'Thank you for your contribution! :confetti_ball:'

Recommendations:

Smart Commit

This makes your commits and PR summary consistent.

Check repo.