Example workflow configuration showing how to use GitHub Actions secrets in pull requests from forks π΄π
An Ok To Test
workflow is configured so that when someone with write access to this repository comments ok-to-test sha=<head-sha>
on a pull request from a fork, a "privileged" Integration tests
workflow needing secrets is triggered. In parallel, a "non-privileged" Unit tests
workflow not needing secrets is triggered on any pull request.
GitHub Actions purposely limits the secrets available to pull requests from forks for security reasons:
GITHUB_TOKEN
is read-only- Other secrets aren't available at all
Though this provides peace of mind, many projects depend on the fork pull request model. If you've configured a GitHub Actions test workflow to trigger on pull requests, and those tests require secrets, the secrets aren't available and the workflow fails.
No longer with this workaround, which shows an example Prow-like /ok-to-test sha=<head-sha>
slash command configuration! π₯³
This project is not affiliated with GitHub.
This is a template repository with three example workflows. Start by creating a new repository ("Use this template"). Then, consider for your use case:
- Which type of token you'll use to emit the
repository_dispatch
event inOk To Test
. Set the secrets in your repository accordingly, e.g. I used a GitHub App and had to save secrets calledAPP_ID
andPRIVATE_KEY
. Remember: if you also choose GitHub App authentication (preferred), you must create and install it on the repo(s) in which this configuration will run. See Creating A GitHub App for a basic overview of how to do this. - Which workflow(s) need secrets. In this example, it's
Integration tests
, and I would need to fill in my tests here. - Which workflow(s) do not need secrets. In this example, it's
Unit tests
. These types of workflows can simply trigger on pull request. - The Permissions required for your
GITHUB_TOKEN
. The workflows used to implementok-to-test
require the ability to: add reactions to your pull request comments, and update the status of your pull request checks. Currently GitHub Actions' built-inGITHUB_TOKEN
isread
-only by default. The example workflows in this repo explicitly grant the necessarywrite
permissions to the jobs that require them. You can read more about this in the GitHub Docs, which also describe how to update the defaults.
As someone with write access, comment /ok-to-test sha=<head-sha>
on an incoming pull request to set off this Rube Goldberg machine π. The head sha
is the first seven characters of the most recent commit of the incoming pull request. For example, /ok-to-test sha=742c71a
.
- A fork pull request is opened.
- A unit test workflow runs. Secrets are not available to this workflow.
- Someone with write access looks over the pull request code.
β οΈ Before proceeding, they should be sure the code isn't doing anything malicious like secret logging.β οΈ - They comment
/ok-to-test sha=<head-sha>
on the pull request. - A
repository_dispatch
API request is sent to this repository. See guidance below on how to authenticate. - An integration test workflow runs, checking out the merge commit if the head sha hasn't changed since the comment was made. Secrets are available to this workflow! π«
- The pull request status check is updated to reflect the success or failure of the integration test workflow.
Note that this sequence also works for branch based pull requests, as you'd expect!
Choose one of these authentication methods for the repository_dispatch
helper action, peter-evans/slash-command-dispatch
, in ok-to-test.yml
:
- Personal access token with
repo
scope - OAuth "app" token with
repo
scope - βοΈ Preferred: GitHub App installation access token with
contents: write
andmetadata: read
permissions. See Creating A GitHub App for a basic overview of how to do this.
GitHub Apps have distinct identities on GitHub β no seat taken up by a machine account, no potential for leaking your personal credentials, and no rate limit sharing!
Here we are using a GitHub App as an authentication entity. Below are some brief instructions on how to setup a GitHub App for this purpose, note that there are other methods of creating a GitHub App such as with a manifest file (e.g. one similar to app.yml
). (The instructions below are for setting up an app within your user, but you can also do it for your organization.)
- Go to
Settings > Developer Settings > GitHub Apps
, and selectNew GitHub App
. - Enter a name for your app (this needs to be unique across GitHub), and fill in the required URL fields. You can fill in these URLs with fake values - they do not need to resolve, so you can use:
- Homepage URL =
http://example.com
- Homepage URL =
- You can ignore the 'Callback URL' field, and untick
'Webook' > Active
- Under
Repository Permissions
, set:- Contents = 'Read and Write'
- Metadata = 'Read-only'
- Click 'Create GitHub app'
- Click 'Generate Private key' (this will be downloaded to your computer), and take a note of the
App ID
field - Install the GitHub App into your user or organization, by clicking 'Install' under the 'Install App' tab, and choose whether you want to give the app access to all of your user's / org's repositories, or just specific ones
- Go to the repository that you want to use
ok-to-test
with, and thenSettings > Secrets and variables > Actions
and create two new secrets:APP_ID
with the value for theApp ID
field that you noted earlierPRIVATE_KEY
, copying and pasting in the full contents of the Private Key file that you generated and downloaded earlier
- Prow for the idea for
ok-to-test
- A few handy community actions,
peter-evans/slash-command-dispatch
,tibdex/github-app-token
, andactions/github-script
Pull requests are welcome!