Generate Chassy Tokens

Learn to generate Chassy tokens for use with our GitHub actions

Chassy's GitHub actions require that you provide a Chassy token for authentication. This guide will get you up and running with the generation of Chassy tokens.

Video tutorial alternative

Only an Admin or Manager is allowed to generate Chassy Tokens

How to generate Chassy Tokens

This guide assumes you already have a Workspace. If you do not, please consult our guide instructing how to Create a Workspace.

First, navigate to the Settings tab in the Chassy Console. There, you will see your account settings.

The Generate Chassy Token section is below the Permissions section on the Settings tab.

To generate your token, just click the Generate button. Upon success, you'll see the censored token accompanied by a Copy button.

Use the Copy button on the right of the censored token.

Clicking the Copy button will copy the token to your clipboard for use elsewhere.

Providing a token to your GitHub actions

To protect your secret, it is recommended that you use GitHub Secrets (see documentation) to store and reference your secret in Actions workflows.

If you named your secret "CHASSY_TOKEN", you can then define the CHASSY_TOKEN environment variable as follows:

env:
    CHASSY_TOKEN: ${{ secrets.CHASSY_TOKEN }}

Last updated