# Setting parameters for GitHub Actions

You can define at the global level the parameters used in GitHub Actions workflows to connect to the SonarQube Server (Server URL and token). To do so, you use GitHub secrets at the organization level: see GitHub’s documentation on [Encrypted secrets](https://docs.github.com/en/actions/reference/encrypted-secrets) for more information.

{% hint style="warning" %}
A token defined at the global level gives permissions on all projects in the SonarQube instance.
{% endhint %}

## Storing the authentication token in GitHub at the global level <a href="#token" id="token"></a>

1. In the SonarQube UI, generate a SonarQube token at the global level.
2. Create an organization secret in GitHub with:
   * Name: SONAR\_TOKEN
   * Value: the token you generated in the previous step.

## Storing the SonarQube Server URL in GitHub at the global level <a href="#server-url" id="server-url"></a>

Create an organization secret in GitHub with:

* Name: SONAR\_HOST\_URL
* Value: SonarQube Server URL.
