yumemi-inc/Associated Pull Requests
A GitHub Action that outputs a list of pull request numbers associated with commits between any references.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| separator | Separator between pull request numbers in plain format. | no | "" |
| format | Output format for list of pull request numbers. One of plain, json, markdown. | no | plain |
| bullet | Bullets for list of pull request numbers in markdown format. | no | - # |
| merge-commit-only | List pull requests associated with merge commits only. | no | true |
| merged-status-only | List pull requests with merged status only. | no | true |
| head-ref | Current branch, tag, or commit SHA to compare with base. | no | ${{ github.event_name == 'pull_request_target' && format('refs/pull/{0}/merge',github.event.number) || github.sha }} |
| base-ref | Branch, tag, or commit SHA as a basis for comparison. | no | ${{ (github.event_name == 'pull_request' && github.base_ref) || (github.event_name == 'pull_request_target' && github.base_ref) || (github.event_name == 'push' && (startsWith(github.event.before, '0000') && github.event.repository.default_branch || github.event.before)) || (github.event_name == 'merge_group' && github.event.merge_group.base_sha) || github.event.repository.default_branch }} |
Outputs
| name | description |
|---|---|
| numbers | List of pull request numbers. |