Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default input to gitHub.token #14

Merged
merged 1 commit into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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