Skip to content

Commit

Permalink
fixed complience
Browse files Browse the repository at this point in the history
  • Loading branch information
phish108 committed Dec 18, 2020
1 parent aaeb7b0 commit 807b6cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ branding:
color: green
inputs:
github-token:
description: "the token"
default: ${{ github.token }}
required: false
protected-paths:
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const protected_defaults = [
];

async function action() {
const token = core.getInput('github-token', {required: true})
const token = core.getInput("github-token", {required: true});

const github = new githubAction.getOctokit(token);

Expand Down

0 comments on commit 807b6cd

Please sign in to comment.