diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bb1d08..856820c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.3.2 (July 30, 2020) + +Make `quiet` option default to `true` + ## 1.3.1 (July 20, 2020) Fix bug with `exemptUsers` field. diff --git a/README.md b/README.md index 56db4ea..42a6531 100644 --- a/README.md +++ b/README.md @@ -121,10 +121,4 @@ jobs: | bodyURLRegex | | The regular expression used to search the body for a URL reference (example `https://github.com/octocat/hello-world/issues/1`) | | | bodyURLRegexFlags | | The flags applied to the body regular expression when searching for a URL reference | gim | | exemptUsers | | Comma seperated string of usernames that will be exempt from all checks. Most useful for bot/automated PRs (example "octocat,dependabot") | | -| quiet | | If `'true'`, don't comment when a PR title is updated | false | - -## Caveat - -There is limitation currently in the way GitHub triggers their checks. If the pull request fails, a new commit is required (even as simple as an empty one `git commit -m "retrigger checks" --allow-empty` ) to flush the old statuses and re-run a new sequence of checks. - -For updates see the community forum thread here: https://github.community/t5/GitHub-Actions/Editing-a-PR-title-or-first-comment-causing-a-pile-up-of-runs/td-p/53932 +| quiet | | If `true`, don't comment when a PR title is updated | true | diff --git a/action.yml b/action.yml index 7799388..c4bb09a 100644 --- a/action.yml +++ b/action.yml @@ -60,7 +60,7 @@ inputs: quiet: description: 'Suppress comment on successful PR title update' - default: 'false' + default: 'true' required: false token: diff --git a/package.json b/package.json index d6b6bd8..f32512b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ticket-check-action", "description": "Verify that your pull request titles start with a ticket ID", - "version": "1.3.1", + "version": "1.3.2", "author": "Neo Financial Engineering ", "license": "MIT", "repository": {