Skip to content

Commit

Permalink
fix reference error
Browse files Browse the repository at this point in the history
  • Loading branch information
FireLemons committed Feb 4, 2022
1 parent 4ba4b17 commit 86f4f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const core = require('@actions/core');
const github = require('@actions/github');
const token = core.getInput('token');
const octokit = github.getOctokit(token);
// Javascript destructuring assignment. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
const {owner, repo} = github.context.repo
const token = core.getInput('token');

// Determines if an object is an object
// @param {any} variable The object to check
Expand Down

0 comments on commit 86f4f59

Please sign in to comment.