Skip to content

Commit

Permalink
Make quiet option default to true (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
iansu authored Jul 30, 2020
1 parent 2a8754e commit 6f7b704
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ inputs:

quiet:
description: 'Suppress comment on successful PR title update'
default: 'false'
default: 'true'
required: false

token:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 6f7b704

Please sign in to comment.