Skip to content

juztcode/pr-updater

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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.