# GitHub runners

{% hint style="warning" %}
This feature is experimental.

Not recommended for production usage yet, since it might introduce breaking changes in the future.

Feedback is welcome and much appreciated!
{% endhint %}

Earthly satellites are now bundled with a GitHub Actions runner, so they can directly pull jobs from GitHub Actions without the need of an intermediate runner.

These runners come with the Earthly CLI preinstalled and configured to use the satellite BuildKit instance, so GitHub Actions jobs will share the same satellite cache as the traditional satellite builds.

## Creating a GitHub Actions integration

Satellite-based GitHub Actions runners can be enabled for a particular repository or for all repositories of a GitHub organization at once.

The integration process requires you to be a GitHub organization or repository admin, and to provide us with a GitHub token, so we can:

* register a webhook in your GitHub repository/organization to receive the events generated from your GitHub Actions jobs
* create GitHub self-hosted runners on demand, to process your repository/organization jobs

Follow the next steps to create such integrations:

### 1. Create a GitHub token

* Go to [GitHub's new token page](https://github.com/settings/tokens/new) to create a new GitHub classic token.
* Give a name to your token that clearly shows its purpose, for example:

  ![token name](https://1635908337-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8IWCntycnLCPhIzm97hh%2Fuploads%2Fgit-blob-3161f2edba761328c6353d6c1e49e294e4defa0f%2Ftoken-name.png?alt=media)
* Set the token as non-expiring (notice that the integration won't work after the token expires)

  ![token expiration](https://1635908337-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8IWCntycnLCPhIzm97hh%2Fuploads%2Fgit-blob-2ad7c43e44b94f208864b225614a36f1e6bebf43%2Ftoken-expiration.png?alt=media)
* Check the following scopes:
  * For organization integrations: `admin:org`,`admin:org_hook`
  * Alternatively, for repository integrations: `repo`,`admin:repo_hook`
* Click "generate token"

  ![token generate](https://1635908337-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8IWCntycnLCPhIzm97hh%2Fuploads%2Fgit-blob-42f21b3272eca0e18619acbd286cf47a30cb4f94%2Ftoken-generate.png?alt=media)
* Copy the token value to use it in the following step

{% hint style="info" %}
Alternatively, if you prefer creating a fine-grained token, make sure to set the following permissions for it: org: `organization_hooks:write`, `organization_self_hosted_runners:write`, repo: `repository_hooks:write`, `administration:write` and an expiration time long enough, since the integration won't work after the token expires.
{% endhint %}

### 2. Register the integration via CLI

Create the integration using the `earthly gha add` CLI command, passing the token created in the previous step.

#### Organization integration

```
earthly gha add \
  --org <earthly_organization> \
  --gh-org <github_organization> \
  --gh-token <github_token>
```

#### Single repository integration

```
earthly gha add \
  --org <earthly_organization> \
  --gh-org <github_organization> \
  --gh-repo <github_repo> \
  --gh-token <github_token>
```

### 3. Configure your satellites

This feature needs to be enabled during satellite creation to be able to use it.

#### Earthly-Cloud satellites

Launch the satellite with the `enable-gha-runner` [feature-flag](https://docs.earthly.dev/earthly-cloud/satellites/managing#changing-feature-flags) enabled.

```
earthly satellite launch --feature-flag enable-gha-runner <satellite-name>
```

#### Self-hosted satellites

To enable the GH runner for a self-hosted satellite, set this environment entry when launching it:

```
-e RUNNER_GHA_ENABLED=true
```

also note that the satellite container must have access to the docker daemon in order to run the GitHub Actions jobs in containers:

```
-v /var/run/docker.sock:/var/run/docker.sock
```

**Example**

```shell
docker run --privileged \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -v satellite-cache:/tmp/earthly:rw \
    -p 8372:8372 \
    -e EARTHLY_TOKEN=<earthly_token> \
    -e EARTHLY_ORG=<earthly_org_name> \
    -e SATELLITE_NAME=<satellite_name> \
    -e SATELLITE_HOST=<satellite_host> \
    -e RUNNER_GHA_ENABLED=true \
  earthly/satellite:v0.8.13
```

{% hint style="info" %}
**Required version:** Use at least `earthly/satellite:v0.8.13`
{% endhint %}

**Logs**

You should see a log message like this, when the GitHub Actions runner is enabled:

```
{...,"msg":"starting GitHub Actions job polling loop",...}
```

### 4. Configure your GitHub Actions jobs

In order to make a job run into the satellite, you'll need to reference the satellite name in its [runs-on](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on) label as follows:

```
runs-on: [earthly-satellite#<satellite-name>]
```

#### Example

The following example runs the `+build` target in the satellite. Given that the GH runner is configured to use the satellite BuildKit instance, the persistent satellite cache is implicitly used here.

```yml
earthly-job:
  runs-on: [earthly-satellite#my-gha-satellite]
  env:
    FORCE_COLOR: 1
    EARTHLY_TOKEN: "${{ secrets.EARTHLY_TOKEN }}"
  steps:
    - uses: actions/checkout@v2
    - name: Earthly build
      run: earthly -ci +build
```

{% hint style="warning" %}
Make sure you have an [EARTHLY\_TOKEN](https://docs.earthly.dev/docs/earthly-command#earthly-account-create-token) available in your [GitHub Actions secrets](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions) store, and add it to the job environment, as shown in the previous example. Future versions will remove this requirement.
{% endhint %}

## Listing registered integrations

List the integrations of your Earthly organization with the `earthly gha ls` CLI command:

```
earthly gha ls \
  --org <earthly_organization> 
```

## Removing an integration

Remove an integration using the `earthly gha remove` CLI command:

### Organization integration

```
earthly gha remove \
  --org <earthly_organization> \
  --gh-org <github_organization> 
```

### Single repository integration

```
earthly gha remove \
  --org <earthly_organization> \
  --gh-org <github_organization> \
  --gh-repo <github_repo>
```
