Move docs

This commit is contained in:
Peter Evans 2020-01-03 09:51:43 +09:00
parent 11c388252c
commit c8fed30c65
4 changed files with 10 additions and 6 deletions

View file

@ -16,9 +16,13 @@ Create Pull Request action will:
2. Commit all changes to a new branch, or update an existing pull request branch.
3. Create a pull request to merge the new branch into the base—the branch checked out in the workflow.
## Usage
## Documentation
See [examples](examples.md) for detailed use cases.
- [Concepts and guidelines](docs/concepts-guidelines.md)
- [Examples](docs/examples.md)
- [Updating from v1](docs/updating.md)
## Usage
```yml
- name: Create Pull Request
@ -146,7 +150,7 @@ As well as relying on the action to handle uncommitted changes, you can addition
The following workflow is a reference example that sets all the main inputs.
See [examples](examples.md) for more realistic use cases.
See [examples](docs/examples.md) for more realistic use cases.
```yml
name: Create Pull Request

View file

@ -20,6 +20,6 @@
## New features
- Unpushed commits made during the workflow before the action runs will now be considered as changes to be raised in the pull request
- New commits made to the pull request base will now be taken into account when pull requests are updated
- If an updated pull request no longer differs from its base it will automatically be closed and the pull request branch deleted
- Unpushed commits made during the workflow before the action runs will now be considered as changes to be raised in the pull request. See [Controlling commits](https://github.com/peter-evans/create-pull-request/tree/v2-beta#controlling-commits) for details.
- New commits made to the pull request base will now be taken into account when pull requests are updated.
- If an updated pull request no longer differs from its base it will automatically be closed and the pull request branch deleted.