Overview of Create Pull Request
mainThe create-pull-request GitHub Action automates the process of creating a pull request for changes made within a GitHub Actions workspace. It is intended to be used after other workflow steps have modified or added files to the repository.
When executed, the action:
- Detects changes in the workspace, including untracked (new) files, modified tracked files, and unpushed commits made during the workflow.
- Commits these changes to a new branch (or updates an existing pull request branch).
- Creates or updates a pull request to merge that branch into the base branch (the branch checked out in the workflow).