Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 560 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 560 Bytes

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

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 }}