Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 658 Bytes

File metadata and controls

28 lines (21 loc) · 658 Bytes

Create pull request

Does what it says on the tin - creates a pull request, nothing else.

Usage

name: "Create PR"
on: push

jobs:
  create-pr-on-push:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@1.0.0
    
    - name: Create pull request
      uses: thomaseizinger/create-pull-request@master
      with:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        head: ${{ github.ref }}
        base: master
        title: "An automatically created PR!"

Advanced usage

To get an idea of all inputs that are supported, have a look at this file or the tests.