From f5bc573f43e8cce9185d25ab3f26716861cbcd41 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 12 Aug 2020 13:05:56 +0000 Subject: [PATCH] chore(release): 3.4.1-beta.2 [skip ci] ### [3.4.1-beta.2](https://github.com/bradennapier/eslint-plus-action/compare/v3.4.1-beta.1...v3.4.1-beta.2) (2020-08-12) ### Bug Fixes * rulesSummaries serialization fix ([2793acf](https://github.com/bradennapier/eslint-plus-action/commit/2793acfdd68da69de85b20853b8d567d0bd375b4)) --- README.md | 12 ++++++------ package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1301798..525bf32 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: bradennapier/eslint-plus-action@v3.4.1-beta.1 + - uses: bradennapier/eslint-plus-action@v3.4.1-beta.2 ``` ## Features @@ -77,9 +77,9 @@ You provide configuration properties within your workflow by using the `with` pr | issueSummaryType | string | compact | false | Changes the PR comment to be "full" (as shown on actions page) or "compact" | | issueSummaryMethod | string | edit | false | When issueSummary is enabled, allows having the bot edit or refresh the comment on each new push, can be 'edit' or 'refresh' | | issueSummaryOnlyOnEvent | boolean | false | false | Only provide the issue summary comment if there are warnings or errors present? | +| annotateWarnings | boolean | true | false | By setting this to "false", only errors will be annotated | | reportSuggestions | boolean | true | false | Report suggestions when available within the annotations? | | reportIgnoredFiles | boolean | false | false | Report a list of any ignored files? | -| reportWarnings | boolean | true | false | By setting this to "false", only errors will be annotated | | reportWarningsAsErrors | boolean | false | false | Report any eslint warnings as errors? | | extensions | array | .js,.jsx,.ts,.tsx | false | An array of extensions to lint | | includeGlob | array | \*\*/\* | false | Optional array of globs to include from the changed files list | @@ -131,7 +131,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: bradennapier/eslint-plus-action@v3.4.1-beta.1 + - uses: bradennapier/eslint-plus-action@v3.4.1-beta.2 ``` ## Examples @@ -149,7 +149,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: bradennapier/eslint-plus-action@v3.4.1-beta.1 + - uses: bradennapier/eslint-plus-action@v3.4.1-beta.2 ``` ### Environment Variables @@ -162,7 +162,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: bradennapier/eslint-plus-action@v3.4.1-beta.1 + - uses: bradennapier/eslint-plus-action@v3.4.1-beta.2 env: NPM_TOKEN: ${{secrets.NPM_TOKEN}} ``` @@ -175,7 +175,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: bradennapier/eslint-plus-action@v3.4.1-beta.1 + - uses: bradennapier/eslint-plus-action@v3.4.1-beta.2 env: NPM_TOKEN: ${{secrets.NPM_TOKEN}} with: diff --git a/package.json b/package.json index 11a2524..3adf7ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "typescript-action", - "version": "3.4.1-beta.1", + "version": "3.4.1-beta.2", "private": true, "description": "TypeScript template action", "main": "lib/run.js",