GITHUB_TOKEN #364
-
Hi guys! I was wondering how some workflow files can use GITHUB_TOKEN in secrets if we don't set it. For example in lint-ts.yml file, line 39, we have this : I don't understand how this workflow will access this secret. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @stephanepx, normally GitHub automatically creates a unique GITHUB_TOKEN secret for each workflow. This token works as expected for most workflows, but sometimes the permissions are insufficient for writing and tag creation. That's why, for example, we require a custom GitHub token for app release Any way you can read more here |
Beta Was this translation helpful? Give feedback.
Hey @stephanepx, normally GitHub automatically creates a unique GITHUB_TOKEN secret for each workflow. This token works as expected for most workflows, but sometimes the permissions are insufficient for writing and tag creation. That's why, for example, we require a custom GitHub token for app release
Any way you can read more here