mirror of
https://github.com/actions/checkout.git
synced 2026-02-19 02:34:43 +08:00
Compare commits
4 Commits
dependabot
...
1f8894a1b7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1f8894a1b7 | ||
|
|
85e6279cec | ||
|
|
009b9ae9e4 | ||
|
|
0e208935da |
21
README.md
21
README.md
@@ -129,6 +129,18 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/
|
||||
```
|
||||
<!-- end usage -->
|
||||
|
||||
# Outputs
|
||||
|
||||
The action sets some outputs after a successful run
|
||||
```yaml
|
||||
outputs:
|
||||
ref:
|
||||
description: 'The branch, tag or SHA that was checked out'
|
||||
|
||||
commit:
|
||||
description: 'The commit SHA that was checked out'
|
||||
```
|
||||
|
||||
# Scenarios
|
||||
|
||||
- [Fetch only the root files](#Fetch-only-the-root-files)
|
||||
@@ -311,8 +323,17 @@ jobs:
|
||||
git commit -m "generated"
|
||||
git push
|
||||
```
|
||||
|
||||
*NOTE:* The user email is `{user.id}+{user.login}@users.noreply.github.com`. See users API: https://api.github.com/users/github-actions%5Bbot%5D
|
||||
|
||||
# Recommended permissions
|
||||
|
||||
When using the `checkout` action in your GitHub Actions workflow, it is recommended to set the following `GITHUB_TOKEN` permissions to ensure proper functionality, unless alternative auth is provided via the `token` or `ssh-key` inputs:
|
||||
|
||||
```yaml
|
||||
permissions:
|
||||
contents: read
|
||||
```
|
||||
|
||||
# License
|
||||
|
||||
|
||||
Reference in New Issue
Block a user