This action add comment to Backlog issues when pull request opened or closed.
Pull request title should have issue key like PROJECT-1
Required The host of your backlog workspace.
Required The api key of your backlog account.
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 }}