diff --git a/README.md b/README.md index 512ae52..6c0bf6d 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ action "Create Pull Request" { uses = "peter-evans/create-pull-request@v1.0.0" secrets = ["GITHUB_TOKEN"] env = { - PULL_REQUEST_BRANCH = "auto-branch" + PULL_REQUEST_BRANCH = "my-patches" COMMIT_MESSAGE = "Auto-modify files by my-file-modifier-action" PULL_REQUEST_TITLE = "Changes from my-file-modifier-action" PULL_REQUEST_BODY = "This is an auto-generated PR with changes from my-file-modifier-action" @@ -63,6 +63,9 @@ action "Create Pull Request" { } ``` +This configuration will create pull requests that look like this: +![Pull Request Example](pull-request-example.png?raw=true) + ## License MIT License - see the [LICENSE](LICENSE) file for details diff --git a/pull-request-example.png b/pull-request-example.png new file mode 100644 index 0000000..7a79f6e Binary files /dev/null and b/pull-request-example.png differ