Skip to content

Commit

Permalink
Default input to gitHub.token (#14)
Browse files Browse the repository at this point in the history
Default github.token
  • Loading branch information
Bhacaz authored Jun 21, 2022
1 parent dd99f56 commit 6099cdf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ Minimal setup.
uses: Bhacaz/checkout-files@v1
with:
files: package.json
token: ${{ secrets.GITHUB_TOKEN }}
```
## Inputs
|Name|Description|Required|Default|
|---|---|---|---|
|`files`|A list of files with the path separated by a space, relative to root of your repository. Can also be a folder and the action will recursively pull all the files.|`true`|N/A|
|`token`|A GitHub token. Setting `${{ secrets.GITHUB_TOKEN }}` give acces to the one [automatically generated](https://docs.github.com/en/actions/security-guides/automatic-token-authentication). |`true`|N/A|
|`token`|A GitHub token. |`false`|`${{ github.token }}`|
|`branch`|Checkout files from a specific branch.|`false`|`master`|
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
required: true
token:
description: 'A Github Private Access Token'
required: true
default: ${{ github.token }}
branch:
description: 'Branch to checkout files from'
required: false
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const core = require('@actions/core');
const github = require('@actions/github');
const fs = require('fs');

const token = core.getInput('token', { required: true });
const token = core.getInput('token');
const octokit = github.getOctokit(token)

const files = core.getInput('files', { required: true }).split(' ');
Expand Down

0 comments on commit 6099cdf

Please sign in to comment.