Skip to content

Commit

Permalink
limit-access-to-actor default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jul 16, 2022
1 parent a10f636 commit 061497f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export async function run() {
}

let newSessionExtra = ""
if (core.getInput("limit-access-to-actor") === "true") {
if (core.getInput("limit-access-to-actor") !== "false") {
const { actor } = github.context
const octokit = new Octokit()

Expand Down

0 comments on commit 061497f

Please sign in to comment.