fix: splitting tokens

This commit is contained in:
Simone Corsi
2021-01-16 11:05:14 +01:00
parent 7499f866f0
commit bd470783b8
5 changed files with 13 additions and 9 deletions

View File

@@ -8,6 +8,12 @@ This action query the github api to get starred list of the user and then genera
The github workflow token
### `api-token`
Personal API Access Token to fetch stars from the API without incurring in Rate Limits.
You'll have to set this into the secrets yourself.
## Outputs
Output the generated list in the project `README.md`
@@ -18,4 +24,5 @@ Output the generated list in the project `README.md`
uses: simonecorsi/mawesome@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
api-token: ${{ secrets.API_TOKEN }}
```