Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese committed Jan 6, 2024
1 parent 09ac51c commit 909d525
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,17 @@ with:
### org

**Optional** `Boolean` Indicates the repo is an [organization](https://docs.github.com/en/github/setting-up-and-managing-organizations-and-teams/about-organizations).

## FAQ

* ### Why do I get the error '*Resource not accessible by integration*'?

This will happen if you use ```secrets.GITHUB_TOKEN```.

You need to create a [personal access token](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) instead, and store its value in a secret, for example ```MY_TOKEN```.

Then refer to it like this:

```yaml
token: ${{ secrets.MY_TOKEN }}
```

0 comments on commit 909d525

Please sign in to comment.