About the GITHUB_TOKEN
At the start of each workflow job, GitHub automatically creates a unique GITHUB_TOKEN
secret to use in your workflow. You can use the GITHUB_TOKEN
to authenticate in the workflow job.
When you enable GitHub Actions, GitHub installs a GitHub App on your repository. The GITHUB_TOKEN
secret is a GitHub App installation access token. You can use the installation access token to authenticate on behalf of the GitHub App installed on your repository. The token's permissions are limited to the repository that contains your workflow. For more information, see GITHUB_TOKEN reference.
Before each job begins, GitHub fetches an installation access token for the job. Le GITHUB_TOKEN
expire à la fin d’un travail ou après un délai maximal de 24 heures.
The token is also available in the github.token
context. For more information, see Contexts reference.
When GITHUB_TOKEN
triggers workflow runs
Lorsque vous utilisez le GITHUB_TOKEN
du référentiel pour effectuer des tâches, les événements déclenchés par le GITHUB_TOKEN
, à l’exception du workflow_dispatch
et du repository_dispatch
, ne créeront pas une nouvelle exécution du flux de travail. Cela vous empêche de créer accidentellement des exécutions de workflow récursives. Par exemple, si une exécution de workflow pousse (push) du code à l’aide du GITHUB_TOKEN
du dépôt, aucun nouveau workflow ne s’exécute même quand le dépôt contient un workflow configuré pour s’exécuter quand des événements push
se produisent.
Les commits envoyés par un workflow GitHub Actions qui utilise le GITHUB_TOKEN
ne déclenchent pas de build GitHub Pages.