mxschmitt / action-tmate

Debug your GitHub Actions via SSH by using tmate to get access to the runner system itself.
https://mxschmitt.github.io/action-tmate/
MIT License
2.94k stars 288 forks source link

feature request: `limit-access-to-actors` #202

Open makslevental opened 2 months ago

makslevental commented 2 months ago

I'd like to limit not by actor, but by a set of actors. Superficially it seems like it's possible;

const keys = await octokit.users.listPublicKeysForUser({
  username: actor
})

assuming this will work with any actor, not just the one that initiated the action?

If you're up for it, I can send a PR.