micalevisk/Find Last Issue
GitHub Action to find and export the number of last updated issue whithin some repository that has given labels.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| repository | The target GitHub owner and name separated by slash. For example: `micalevisk/last-issue-action`. | — | ${{ github.repository }} |
| token | The GitHub token providing at least `issues: read` authorization to the repository. | — | ${{ github.token }} |
| labels | Comma-separated label names that the issue must have. | yes | — |
| state | Issue state to filter by. Can be `"open"`, `"closed"` or `"all"` | no | — |
Outputs
| name | description |
|---|---|
| issue-number | The number of the issue found, otherwise empty. |
| has-found | Response status. Will be `true` if some issue was found, otherwise `false`. |
| is-closed | Will be `true` if the issue found is closed, otherwise `false`. |