I got a PR at https://github.com/UnlyEd/github-action-store-variable/pull/58 as an external PR, hence, GitHub Actions are "restricted" for security reasons.
How can I, the owner of the destination repository, make it so that PR goes through the proper GitHub Actions without the usual restrictions?
I know I could fork the branch and make a new (internal) PR, but that takes time, is there a simpler/faster solution?
Workflows, generally, by default, won't run on PRs submitted from forks from external contributors.
To allow workflows to run on such PRs, it's required to manually approve the workflow runs.
.github/workflows/
directory that affect workflow files.It is also possible to configure how strict or often the manual approval is required, with the three different categories being "all workflows from all external contributors all the time", "all workflows from all external contributors the first time they are contributing here", and "all workflows from all external contributors the first time they are contributing here who are new to GitHub."