1
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2025-04-04 13:57:48 +02:00

Update README.md

This commit is contained in:
Thomas Boop 2019-10-24 10:36:11 -04:00 committed by GitHub
parent 977caa6e4a
commit 01bc4e5c74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,8 +13,8 @@ Basic:
```yaml ```yaml
steps: steps:
- uses: actions/checkout@v1.0.0 - uses: actions/checkout@v1
- uses: actions/setup-node@master - uses: actions/setup-node@v1
with: with:
node-version: 10.x node-version: 10.x
- run: npm install - run: npm install
@ -25,14 +25,14 @@ By default, the branch or tag ref that triggered the workflow will be checked ou
Checkout different branch from the workflow repository: Checkout different branch from the workflow repository:
```yaml ```yaml
- uses: actions/checkout@v1.0.0 - uses: actions/checkout@v1
with: with:
ref: some-branch ref: some-branch
``` ```
Checkout different private repository: Checkout different private repository:
```yaml ```yaml
- uses: actions/checkout@v1.0.0 - uses: actions/checkout@v1
with: with:
repository: myAccount/myRepository repository: myAccount/myRepository
ref: refs/heads/release ref: refs/heads/release
@ -41,7 +41,7 @@ Checkout different private repository:
Checkout private submodules: Checkout private submodules:
```yaml ```yaml
- uses: actions/checkout@v1.0.0 - uses: actions/checkout@v1
with: with:
submodules: recursive submodules: recursive
token: ${{ secrets.GitHub_PAT }} // `GitHub_PAT` is a secret contains your PAT. token: ${{ secrets.GitHub_PAT }} // `GitHub_PAT` is a secret contains your PAT.
@ -53,7 +53,7 @@ For more details, see [Contexts and expression syntax for GitHub Actions](https:
# Changelog # Changelog
## master (unreleased) ## v1.1.0 (unreleased)
- Persist `with.token` or `${{ github.token }}` into checkout repository's git config as `http.https://github.com/.extraheader=AUTHORIZATION: basic ***` to better support scripting git - Persist `with.token` or `${{ github.token }}` into checkout repository's git config as `http.https://github.com/.extraheader=AUTHORIZATION: basic ***` to better support scripting git
# License # License