Skip to content
play

GitHub Action

Pull request updater

1.0.0 Latest version

Pull request updater

play

Pull request updater

Update pr title and body

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Pull request updater

uses: juztcode/[email protected]

Learn more about this action in juztcode/pr-updater

Choose a version

PR Updater - Github action

A GitHub Action to update pull request title and body.

Usage

  1. Create a .github/workflows/pr-update.yml file in your GitHub repo.
  2. Add the following code to the pr-update.yml file.
on:
  pull_request:
    types:
      - opened
      - synchronize
      - reopened
      - ready_for_review
    branches:
      - master

jobs:
  attach:
    runs-on: ubuntu-18.04

    steps:
      - name: Update pr
        if: success()
        uses: juztcode/[email protected]
        with:
          title: Test
          body: Test

Inputs

Input Purpose
title PR title.
body PR body.