Skip to content

perdoo/pull-request-update-body-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Pull Request Update Body Action

Append to or override a pull request's body.

Inputs

ghToken

Required. GitHub token.

body

Required. Text to be added to the body.

override

Optional. Should the body get overriden.

Default: false

Example usage

on:
  pull_request:
    types: [opened]
...

uses: Perdoo/pull-request-update-body-action@v1.0.1
with:
  ghToken: ${{ secrets.GITHUB_TOKEN }}
  body: "Hello World!"