Compare commits

..

1 Commits

Author SHA1 Message Date
eric sciple
e9fadf668a pr head commit scenario 2019-12-03 18:12:12 -05:00
2 changed files with 8 additions and 11 deletions

View File

@@ -10,8 +10,7 @@ By default, the repository that triggered the workflow is checked-out, for the r
Refer [here](https://help.github.com/en/articles/events-that-trigger-workflows) to learn which commit `$GITHUB_SHA` points to for different events. Refer [here](https://help.github.com/en/articles/events-that-trigger-workflows) to learn which commit `$GITHUB_SHA` points to for different events.
# What's new Changes in V2:
- Improved fetch performance - Improved fetch performance
- The default behavior now fetches only the SHA being checked-out - The default behavior now fetches only the SHA being checked-out
- Script authenticated git commands - Script authenticated git commands
@@ -39,9 +38,8 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
# Default: ${{ github.repository }} # Default: ${{ github.repository }}
repository: '' repository: ''
# The branch, tag or SHA to checkout. When checking out the repository that # Ref to checkout (SHA, branch, tag). For the repository that triggered the
# triggered a workflow, this defaults to the reference or SHA for that event. # workflow, defaults to the ref/SHA for the event. Otherwise defaults to master.
# Otherwise, defaults to `master`.
ref: '' ref: ''
# Access token for clone repository # Access token for clone repository
@@ -89,7 +87,7 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
```yaml ```yaml
- uses: actions/checkout@v2-beta - uses: actions/checkout@v2-beta
with: with:
ref: ${{ github.event.after }} ref: refs/pull/${{ github.event.number }}/head
``` ```
# License # License

View File

@@ -1,14 +1,13 @@
name: 'Checkout' name: 'Checkout'
description: 'Checkout a Git repository at a particular version' description: 'Checkout a Git repository'
inputs: inputs:
repository: repository:
description: 'Repository name with owner. For example, actions/checkout' description: 'Repository name with owner. For example, actions/checkout'
default: ${{ github.repository }} default: ${{ github.repository }}
ref: ref:
description: > description: >
The branch, tag or SHA to checkout. When checking out the repository Ref to checkout (SHA, branch, tag). For the repository that triggered the
that triggered a workflow, this defaults to the reference or SHA for workflow, defaults to the ref/SHA for the event. Otherwise defaults to master.
that event. Otherwise, defaults to `master`.
token: token:
description: 'Access token for clone repository' description: 'Access token for clone repository'
default: ${{ github.token }} default: ${{ github.token }}
@@ -26,4 +25,4 @@ inputs:
runs: runs:
using: node12 using: node12
main: dist/index.js main: dist/index.js
post: dist/index.js post: dist/index.js