You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the document, we need to set githubToken: ${{ secrets.GITHUB_TOKEN }} to see test results. However, it's not necessary for users I think.
Suggested solution
If you set ${{ github.token }} (which is equivalent to ${{ secrets.GITHUB_TOKEN }}) as a default value for githubToken, We don't need to set github token manually.
Additional details
${{ github.token }} as a default value is used in many official actions. For example, actions/checkout
The text was updated successfully, but these errors were encountered:
Context
In the document, we need to set
githubToken: ${{ secrets.GITHUB_TOKEN }}
to see test results. However, it's not necessary for users I think.Suggested solution
If you set
${{ github.token }}
(which is equivalent to${{ secrets.GITHUB_TOKEN }}
) as a default value forgithubToken
, We don't need to set github token manually.Additional details
${{ github.token }}
as a default value is used in many official actions. For example,actions/checkout
The text was updated successfully, but these errors were encountered: