Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
uses: ./
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
limit: 5
```
## 📝 Example TODOs
Expand Down Expand Up @@ -73,7 +74,7 @@ If a label like `priority:high` or `due:2025-06-01` doesn't exist, it will be au

## 📌 Notes

- Max **5 issues** are created per run to avoid rate limiting
- Max **5 issues** are created per run to avoid rate limiting (configurable via the `limit` input)
- **Duplicate detection** is not yet implemented _(coming soon)_
- All labels are **auto-created with default colors** if missing

Expand Down
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ inputs:
required: false
description: Email used in conjunction with the Jira API token

limit:
required: false
description: Maximum number of issues to create
default: '5'

runs:
using: 'node20'
main: 'dist/index.js'
Expand Down