Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.82 KB

README.md

File metadata and controls

46 lines (37 loc) · 1.82 KB

Build

backlog-pr-link-action

GitHub Actions: Link PR to backlog issue.

Usage

# .github/workflows/backlog-pr-link.yml
name: 'Link PR to Backlog'

on:
  pull_request:
    types: [opened, edited]

jobs:
  backlog-pr-link:
    runs-on: ubuntu-latest
    steps:
      - uses: toshimaru/[email protected]
        with:
          backlog-api-key: "${{ secrets.BACKLOG_API_KEY }}"
          backlog-host: "your-org.backlog.com"

Setup