https://github.com/taktos/pr-to-backlog-action
This action add comment to Backlog issues when pull request opened or closed.
https://github.com/taktos/pr-to-backlog-action
backlog github-actions pull-request
Last synced: 5 months ago
JSON representation
This action add comment to Backlog issues when pull request opened or closed.
- Host: GitHub
- URL: https://github.com/taktos/pr-to-backlog-action
- Owner: taktos
- Created: 2020-07-15T05:04:09.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-09-09T10:11:34.000Z (almost 6 years ago)
- Last Synced: 2025-10-04T09:29:23.776Z (9 months ago)
- Topics: backlog, github-actions, pull-request
- Language: TypeScript
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pull request to Backlog
This action add comment to [Backlog](https://backlog.com) 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/pr-to-backlog-action@v1.0
with:
backlog-host: workspace.backlog.com
api-key: ${{ secrets.BACKLOG_API_KEY }}
```