Skip to content
git-pull-request

GitHub Action

Pull Request to Backlog

v1.0 Latest version

Pull Request to Backlog

git-pull-request

Pull Request to Backlog

Add comment to Backlog issues when pull request opened or closed

Installation

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

              

- name: Pull Request to Backlog

uses: taktos/[email protected]

Learn more about this action in taktos/pr-to-backlog-action

Choose a version

Pull request to Backlog

This action add comment to Backlog issues when pull request opened or closed.

Pull request title should have issue key like PROJECT-1

Inputs

backlog-host

Required The host of your backlog workspace.

api-key

Required The api key of your backlog account.

Example usage

on:
  pull_request:
    types: [opened, closed]
jobs:
  backlog:
    runs-on: ubuntu-latest
    steps:
    - name: Add comment to Backlog issue
      uses: actions/[email protected]
      with:
        backlog-host: workspace.backlog.com
        api-key: ${{ secrets.BACKLOG_API_KEY }}