Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsciple committed Jul 14, 2020
1 parent 1433f62 commit a4b69b4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
- [Checkout multiple repos (private)](#Checkout-multiple-repos-private)
- [Checkout pull request HEAD commit instead of merge commit](#Checkout-pull-request-HEAD-commit-instead-of-merge-commit)
- [Checkout pull request on closed event](#Checkout-pull-request-on-closed-event)
- [Push a commit using the built-in token](#Push-a-commit-using-the-built-in-token)

## Fetch all history for all tags and branches

Expand Down Expand Up @@ -213,6 +214,24 @@ jobs:
- uses: actions/checkout@v2
```

## Push a commit using the built-in token

```yaml
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
date > generated.txt
git config user.name github-actions
git config user.email github-actions-bot@users.noreply.github.com
git add .
git commit -m "generated"
git push
```

# License

The scripts and documentation in this project are released under the [MIT License](LICENSE)

0 comments on commit a4b69b4

Please sign in to comment.