You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a new branch, makes a commit and a creates a pull-request using with a github-actions user as the author
3
+
Create a new branch, makes a commit and a creates a pull-request using with a github-actions user as the author. These will be created on the account/repo that called the actions.
4
4
5
-
This will be created on the account/repo that called the actions, it will not create a pull-request in a forked repo.
5
+
This action is intended as a step in a larger workflow and at a minimum the repository must have already been checked out and be on the branch that we want to target and there must be some changes to commit.
6
+
7
+
## Usage
8
+
9
+
**workflow.yml**
10
+
```yml
11
+
steps:
12
+
- name: Create pull-request
13
+
uses: silverstripe/gha-pull-request@main
14
+
with:
15
+
branch: pulls/4/my-branch
16
+
title: NEW My pull-request title
17
+
description: (Optional) This text will appear in the body of the GitHub pull-request
0 commit comments