Skip to content

Commit

Permalink
org_token
Browse files Browse the repository at this point in the history
  • Loading branch information
olivercodes committed Aug 11, 2022
1 parent 5074e7f commit bc32c6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

const {Octokit} = __nccwpck_require__(7467)
const core = __nccwpck_require__(2186);
const octokit = new Octokit({auth: process.env.GITHUB_TOKEN });
const octokit = new Octokit({auth: process.env.ORG_TOKEN });

function uniq(a) {
return [...new Set(a)];
Expand Down
2 changes: 1 addition & 1 deletion lib/helpers.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const {Octokit} = require('octokit')
const core = require('@actions/core');
const octokit = new Octokit({auth: process.env.GITHUB_TOKEN });
const octokit = new Octokit({auth: process.env.ORG_TOKEN });

function uniq(a) {
return [...new Set(a)];
Expand Down

0 comments on commit bc32c6c

Please sign in to comment.