Skip to content

Commit

Permalink
Add permissions section and integration job (#110)
Browse files Browse the repository at this point in the history
* Add permissions section and integration job

* Try no permissions

* Update README

* Update README.md
  • Loading branch information
stackptr authored Nov 2, 2023
1 parent 7a3185a commit 2d13f32
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,10 @@ jobs:
- run: yarn install
- run: yarn build
- run: yarn test --passWithNoTests

integration:
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/checkout@v4
- uses: ./
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@ them accordingly.
See [action.yml](./action.yml) for a complete list of inputs and outputs.
## Permissions
This action requires the following permissions:
```yaml
permissions: {}
```
As the action uses the GitHub API, these should be updated to reflect the
minimal permissions required. These permissions may need to be manually set in
certain scenarios, such as workflows triggered by Dependabot PRs, which use a
read-only `GITHUB_TOKEN`.

## Versioning

Versioned tags will exist, such as `v1.0.0` and `v2.1.1`. Branches will exist
Expand Down

0 comments on commit 2d13f32

Please sign in to comment.