This action will add a comment to a PR. If exclusive
flag is not explicitly set to false, the comment will only be created if there is not already an identical comment present.
Required The text of the comment.
Required The token to access the repo, same one as is available in the action.
Optional Do not comment if there is already an identical comment. Default true.
uses: smartlyio/comment-to-pr-action@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
comment: 'The kittens have decreed that this PR is acceptable!'
- Run typescript:
npm run compile
- Run test:
npm run test
- Run linters:
npm run lint
Run all the above: npm run all
Follow these steps to release a new version
- Create release branch:
git checkout -b v{next-version}
- Compile your
index.js
file.ncc build index.js
- Push the required changes to git:
git add dist/index.js
git commit -m "New version with great changes"
git push