Skip to content

Pull request updater

Actions
Update pr title and body
1.0.0
Latest
Star (1)

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.

Pull request updater is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Update pr title and body
1.0.0
Latest

Pull request updater is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.