Skip to content

Commit

Permalink
docs: fix rendering of note in README (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 authored Nov 5, 2024
1 parent f0f5116 commit 25388cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ instructions][generating-cred-bundle] and provided as the `creds` input.
- To generate an org-scoped token, provide only the `org` input
- To generate a repo-scoped token, provide `owner` and `repo` inputs

> [!NOTE] By default the `owner` and `repo` inputs refer to the current
> repository, so they do not need to be provided unless the token is needed for
> a different repository.
> [!NOTE]
>
> By default the `owner` and `repo` inputs refer to the current repository, so
> they do not need to be provided unless the token is needed for a different
> repository.
### Example

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "jest",
"format:write": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "esbuild src/index.js src/post.js --bundle --outdir=dist --platform=node --target=node20.2",
"package:watch": "npm run package -- --watch",
Expand Down

0 comments on commit 25388cd

Please sign in to comment.