benlei/find-issue-by-title
Finds an issue by an exact title match
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit May 18, 2026
- License
- MIT
Pinned Snippet
uses: benlei/find-issue-by-title@e7f510e5767d82b183539a3b687ab1f368f301f5 # v1tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| repository | The repository to fetch the issue from. For example, benlei/test-action | — | ${{ github.repository }} |
| token | The GitHub token used to create an authenticated client | no | ${{ github.token }} |
| fail-on-error | Whether to fail the action if any error occurs | no | true |
| issue-number | The number of the issue to load data from | no | — |
| title | The exact title of the issue, if issue-number is not specified | no | — |
| state | The expected state of the issue. Should either be open (default), closed, or all | no | open |
| labels | A comma-separated list of labels to filter the issue by, such as `bug,ui,@high` | no | — |
Outputs
| name | description |
|---|---|
| id | The ID of the issue that was found |
| number | The number of the issue that was found |
| title | The title of the issue that was found |
| body | The body of the issue that was found |
| state | The state of the issue that was found |
| locked | Whether the issue is locked |
| comments | The number of comments on the issue |
| created-at | The date the issue was created |
| updated-at | The date the issue was last updated |
| closed-at | The date the issue was closed |