diff --git a/README.md b/README.md index 1abeef6..23d37ec 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # PHP CodeSniffer GitHub Action -This action will help you to run phpcs (PHP_CodeSniffer) with [GitHub Actions](https://github.com/features/actions) platform. It also supports [annotations](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-status-checks#checks) out of the box —— you don't need to use any tokens to make it work. +This action will help you to run phpcs (PHP_CodeSniffer) with [GitHub Actions](https://github.com/features/actions) platform. It also supports [annotations](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-status-checks#checks) out of the box — you don't need to use any tokens to make it work. - +How Annotations Works ## Usage @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: PHPCS check - uses: chekalsky/phpcs-action:v1 + uses: chekalsky/phpcs-action@v1 ``` Eventually you could also check for warnings. @@ -28,7 +28,7 @@ Eventually you could also check for warnings. ```yaml ... - name: PHPCS check - uses: chekalsky/phpcs-action:v1 + uses: chekalsky/phpcs-action@v1 with: enable_warnings: true ```