https://github.com/seqsense/extract-pr-titles-action
GitHub Action to extract PR titles between the given two git refs. Wrapper of https://github.com/kt3k/extract-pr-titles
https://github.com/seqsense/extract-pr-titles-action
Last synced: 5 months ago
JSON representation
GitHub Action to extract PR titles between the given two git refs. Wrapper of https://github.com/kt3k/extract-pr-titles
- Host: GitHub
- URL: https://github.com/seqsense/extract-pr-titles-action
- Owner: seqsense
- License: apache-2.0
- Created: 2021-06-03T02:13:40.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2026-01-19T17:26:59.000Z (5 months ago)
- Last Synced: 2026-01-19T23:30:37.792Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 562 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# extract-pr-titles-action
GitHub Action to extract PR titles between the given two git refs.
Wrapper of https://github.com/kt3k/extract-pr-titles
```yaml
jobs:
example:
steps:
- uses: actions/checkout@v2
with:
ref: refs/remotes/origin/main
fetch-depth: 0
- uses: seqsense/extract-pr-titles-action@v0
id: titles
with:
from: origin/main
to: origin/release
format: "- {title} #{number}"
reverse: true
- run: echo ${{ steps.titles.outputs.titles }}
```