Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 786 Bytes

README.md

File metadata and controls

34 lines (29 loc) · 786 Bytes

pr-list-action

A GitHub action to add a list of merged Pull Requests in a branch to a Pull Request

Action

name: Update PR Body
on:
  pull_request:
    branches: ["main"]

jobs:
  update-pr-body:
    permissions: write-all
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Update PR Body
        uses: sequel-technologies/[email protected]
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          owner: sequel-technologies
          repo: ${{ github.repository }}
          head: ${{ github.head_ref }}
          base: ${{ github.base_ref }}
          pr-number: ${{ github.event.number }}

Building

  1. Install vercel/ncc by running this command in your terminal
    npm run prepare